Skip to content

Commit

Permalink
setting loging to default
Browse files Browse the repository at this point in the history
  • Loading branch information
faboweb committed Dec 8, 2017
1 parent 2bf8082 commit e1459fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const WIN = /^win/.test(process.platform)
const DEV = process.env.NODE_ENV === 'development'
const TEST = JSON.parse(process.env.COSMOS_TEST || 'false') !== false
// TODO default logging or default disable logging?
const LOGGING = JSON.parse(process.env.LOGGING || DEV) !== false
const LOGGING = JSON.parse(process.env.LOGGING || 'true') !== false
const MOCK = JSON.parse(process.env.MOCK || !TEST && DEV) !== false
const winURL = DEV
? `http://localhost:${require('../../../config').port}`
Expand Down

0 comments on commit e1459fd

Please sign in to comment.