Skip to content

Commit

Permalink
v0.0.6
Browse files Browse the repository at this point in the history
- Fix storage path for PRODUCTION ENV
  • Loading branch information
dr-dimitru committed Apr 10, 2015
1 parent e9012d0 commit 73a8fe2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .versions
2 changes: 1 addition & 1 deletion ostrio:loggerfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Meteor.log.add "File", (level, message, data = null, userId) ->
Meteor.log.file =
path: ""

storageDir = (if (process.env.NODE_ENV is "development") then "/static/logs" else "/builded/bundle/programs/server/assets/app/logs")
storageDir = (if (process.env.NODE_ENV is "development") then "/static/logs" else "/programs/server/assets/app/logs")
path = process.env.PWD + storageDir

Meteor.log.file.path = path
Expand Down
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
name: 'ostrio:loggerfile',
version: '0.0.5',
version: '0.0.6',
summary: 'Simply store application logs into file within ostrio:logger package',
git: 'https://github.com/VeliovGroup/Meteor-logger-file',
documentation: 'README.md'
Expand Down

0 comments on commit 73a8fe2

Please sign in to comment.