浏览代码

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';
 import { InvalidGrowiCommandError } from '../models/errors';
 
 
 export const parse = (slashCommand: SlashCommand): GrowiCommand => {
 export const parse = (slashCommand: SlashCommand): GrowiCommand => {
-  console.log(slashCommand);
   const splitted = slashCommand.text.split(' ');
   const splitted = slashCommand.text.split(' ');
-  console.log('splited', splitted);
   if (splitted.length < 1) {
   if (splitted.length < 1) {
     throw new InvalidGrowiCommandError('The SlashCommand.text does not specify GrowiCommand type');
     throw new InvalidGrowiCommandError('The SlashCommand.text does not specify GrowiCommand type');
   }
   }