Skip to content

Commit

Permalink
v0.0.5
Browse files Browse the repository at this point in the history
 - Better message output
 - Deps packages update
  • Loading branch information
dr-dimitru committed May 24, 2015
1 parent 2f20989 commit da77257
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 12 deletions.
2 changes: 1 addition & 1 deletion ostrio:loggerconsole.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ else

Meteor.log.add "Console", (level, message, data = null, userId) =>
data = null if data is undefined or data is "undefined" or !data
data = JSON.stringify(Meteor.log.antiCircular(data)) if data
data = Meteor.log.antiCircular(data) if data

time = new Date()

Expand Down
4 changes: 2 additions & 2 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Package.describe({
name: 'ostrio:loggerconsole',
version: '0.0.4',
version: '0.0.5',
summary: 'Simply output Client application logs into Server\'s console within ostrio:logger package',
git: 'https://github.com/VeliovGroup/Meteor-logger-console',
documentation: 'README.md'
});

Package.onUse(function(api) {
api.versionsFrom('1.0');
api.use(['ostrio:[email protected].4', 'coffeescript'], ['client', 'server']);
api.use(['ostrio:[email protected].5', 'coffeescript'], ['client', 'server']);
api.addFiles('ostrio:loggerconsole.coffee', ['client', 'server']);
});

Expand Down

0 comments on commit da77257

Please sign in to comment.