@@ -187,7 +187,6 @@ Crowi.prototype.model = function(name, model) {
// getter/setter of event instance
Crowi.prototype.event = function(name, event) {
if (event) {
- console.log(event);
this.events[name] = event;
}
@@ -1,14 +1,9 @@
-import loggerFactory from '~/utils/logger';
-
import Crowi from '../crowi';
-const logger = loggerFactory('growi:events:activity');
const events = require('events');
const util = require('util');
function ActivityEvent(crowi: Crowi) {
this.crowi = crowi;