Skip to content

Commit 66acb81

Browse files
rahulbileTom Kirkpatrick
authored and
Tom Kirkpatrick
committed
fix: do not set Model.log property (#3)
1 parent ea75c1e commit 66acb81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module.exports = (app, options) => {
2222
Model._componentsLoaded = true
2323

2424
// Set up logging class.
25-
let log = Model.log = options.log || console
25+
let log = options.log || console
2626
if (typeof log === 'string') {
2727
log = require(log)
2828
}

0 commit comments

Comments
 (0)