Skip to content

Commit

Permalink
fix boolean values
Browse files Browse the repository at this point in the history
  • Loading branch information
antonybudianto committed Jan 7, 2017
1 parent d0737c7 commit 1f6d158
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "express-firebase-middleware",
"version": "0.1.1",
"version": "0.1.2",
"description": "Express middleware for your Firebase applications",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/util/logger.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var debug = process.env.APP_DEBUG;
var debug = (process.env.APP_DEBUG === 'true');

function log() {
if (!debug) return;
Expand Down

0 comments on commit 1f6d158

Please sign in to comment.