Skip to content

Commit

Permalink
fix app debug
Browse files Browse the repository at this point in the history
  • Loading branch information
antonybudianto committed Jan 7, 2017
1 parent ab492b6 commit 10d6be3
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.0",
"version": "0.1.1",
"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 || true;
var debug = process.env.APP_DEBUG;

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

0 comments on commit 10d6be3

Please sign in to comment.