ソースを参照

delete console

zahmis 5 年 前
コミット
2aeeb20b19
1 ファイル変更0 行追加2 行削除
  1. 0 2
      packages/slack/src/utils/slash-command-parser.ts

+ 0 - 2
packages/slack/src/utils/slash-command-parser.ts

@@ -4,9 +4,7 @@ import { GrowiCommand } from '../interfaces/growi-command';
 import { InvalidGrowiCommandError } from '../models/errors';
 
 export const parse = (slashCommand: SlashCommand): GrowiCommand => {
-  console.log(slashCommand);
   const splitted = slashCommand.text.split(' ');
-  console.log('splited', splitted);
   if (splitted.length < 1) {
     throw new InvalidGrowiCommandError('The SlashCommand.text does not specify GrowiCommand type');
   }