Skip to content

Commit

Permalink
Logging is now enabled if system property "furnace.debug" is true
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Jul 23, 2013
1 parent b266cc5 commit 9b4febe
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ public FurnaceImpl()
if (!AddonRepositoryImpl.hasRuntimeAPIVersion())
logger.warning("Could not detect Furnace runtime version - " +
"loading all addons, but failures may occur if versions are not compatible.");
// enableLogging();
if (Boolean.getBoolean("furnace.debug"))
enableLogging();
}

@Override
Expand Down

0 comments on commit 9b4febe

Please sign in to comment.