Skip to content

Commit

Permalink
fix: remove console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
fletcherist committed Jul 16, 2018
1 parent 875e4f5 commit a39d204
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions src/alice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,6 @@ export default class Alice {
const ctxInstance = new Ctx(ctxDefaultParams)
const ctxWithMiddlewares = await applyMiddlewares(this.middlewares, ctxInstance)

console.log(ctxWithMiddlewares.message)

/* check whether current scene is not defined */
if (!session.getData('currentScene')) {
session.setData('currentScene', null)
Expand Down
1 change: 0 additions & 1 deletion src/ctx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ export default class Ctx implements CtxInterface {
public async replyWithImage(params: string | BigImageCard) {
if (typeof params === 'string') {
const message = this._createReply(reply(bigImageCard(image(params))))
console.log(message)
return this._sendReply(message)
} else {
const message = this._createReply(bigImageCard(params))
Expand Down

0 comments on commit a39d204

Please sign in to comment.