Skip to content

Commit

Permalink
Remove references to winston
Browse files Browse the repository at this point in the history
  • Loading branch information
sdepold committed Mar 28, 2014
1 parent f7c9be3 commit 100397e
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Notice: All 1.7.x changes are present in 2.0.x aswell
- [BUG] Fix a case where createdAt timestamp would not be set when updatedAt was disabled Thanks to @fixe [#1543](https://github.com/sequelize/sequelize/pull/1543)
- [BUG] Fix a case where timestamps were not being write protected in `set` when underscored=true. janmeier [#1523](https://github.com/sequelize/sequelize/pull/1523)
- [FEATURE/BUG] Prefetching/includes now fully support schemas
- [FEATURE] Logging is now using winston and can therefore be configured to use files and other things. sdepold. [#1566](https://github.com/sequelize/sequelize/pull/1566)
- [FEATURE] Centralize logging. [#1566](https://github.com/sequelize/sequelize/pull/1566)

#### Backwards compatability changes

Expand Down
1 change: 0 additions & 1 deletion lib/sequelize.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ var url = require("url")
, TransactionManager = require('./transaction-manager')
, QueryTypes = require('./query-types')
, sequelizeErrors = require('./errors')
, winston = require('winston')

module.exports = (function() {
/**
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@
"sql": "~0.35.0",
"circular-json": "~0.1.5",
"bluebird": "~1.0.0",
"node-uuid": "~1.4.1",
"winston": "~0.7.3"
"node-uuid": "~1.4.1"
},
"devDependencies": {
"sqlite3": "~2.1.12",
Expand Down
1 change: 0 additions & 1 deletion test/sequelize/log.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
var chai = require('chai')
, sinonChai = require("sinon-chai")
, sinon = require('sinon')
, winston = require('winston')
, fs = require('fs')
, path = require('path')
, expect = chai.expect
Expand Down

0 comments on commit 100397e

Please sign in to comment.