Skip to content

Commit 4dd9fd4

Browse files
committed
fix(cli): log should be a debug log
1 parent 536ec34 commit 4dd9fd4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

components/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@crystallize/cli",
3-
"version": "5.8.1",
3+
"version": "5.8.2",
44
"description": "Crystallize CLI",
55
"module": "src/index.ts",
66
"repository": "https://github.com/CrystallizeAPI/crystallize-cli",

components/cli/src/domain/use-cases/upload-binaries.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const handler = async (envelope: Envelope<UploadBinariesCommand>, deps: Deps) =>
4141
type === 'MEDIA' ? await manager.uploadImage(path) : await manager.uploadFile(path);
4242
for (const file of paths) {
4343
const cleanPath = file.split('/').slice(-2).join('/');
44-
logger.info(`Uploading file: ${pc.yellow(file)}`);
44+
logger.debug(`Uploading file: ${pc.yellow(file)}`);
4545
const key = await getKey(file, type);
4646
logger.debug(`File uploaded and registered successfully to ${pc.yellow(key)}`);
4747
results[cleanPath.replaceAll('/', '-').replaceAll('.', '-')] = key;

0 commit comments

Comments
 (0)