Explorar el Código

delete console

zahmis hace 5 años
padre
commit
2aeeb20b19
Se han modificado 1 ficheros con 0 adiciones y 2 borrados
  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');
   }