Browse Source

this.log -> this.error for error logging

iorveth 4 years ago
parent
commit
94287f276d

+ 1 - 1
cli/src/commands/content/createChannel.ts

@@ -68,7 +68,7 @@ export default class CreateChannelCommand extends ContentDirectoryCommandBase {
 
       }
     } else {
-      this.log('Input invalid or was not provided...')
+      this.error('Input invalid or was not provided...')
     }
   }
 }

+ 1 - 1
cli/src/commands/content/updateChannel.ts

@@ -79,7 +79,7 @@ export default class UpdateChannelCommand extends ContentDirectoryCommandBase {
 
       }
     } else {
-      this.log('Input invalid or was not provided...')
+      this.error('Input invalid or was not provided...')
     }
   }
 }