Skip to content

Commit a6ac115

Browse files
authored
Remove un-needed log in Testkit.LocalController (#976)
1 parent 0eb6bce commit a6ac115

File tree

1 file changed

+1
-2
lines changed
  • packages/testkit-backend/src/controller

1 file changed

+1
-2
lines changed

packages/testkit-backend/src/controller/local.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,11 @@ export default class LocalController extends Controller {
4242
}
4343

4444
_writeResponse (contextId, response) {
45-
console.log('> writing response', response.name, response.data)
4645
this.emit('response', { contextId, response })
4746
}
4847

4948
_writeBackendError (contextId, msg) {
50-
this._writeResponse(contextId, newResponse('BackendError', { msg: msg }))
49+
this._writeResponse(contextId, newResponse('BackendError', { msg }))
5150
}
5251

5352
_writeError (contextId, e) {

0 commit comments

Comments
 (0)