Skip to content

Commit

Permalink
Fix #846
Browse files Browse the repository at this point in the history
Signed-off-by: Ross Allan <rallanpcl@gmail.com>
  • Loading branch information
LunNova committed Jul 4, 2013
1 parent 4d6e83c commit 99a8724
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -27,7 +27,9 @@ static ContextAccess getContextAccess() {
}
return contextAccess;
} catch (Throwable t) {
Log.warning("Unable to set up context access class " + clazz + ". " + t.getMessage() + ", falling back to slower context access. On JRE: " + EnvironmentInfo.getJavaVersion());
if (Log.debug) {
Log.debug("Unable to set up context access class " + clazz + ". " + t.getMessage() + ", falling back to slower context access. On JRE: " + EnvironmentInfo.getJavaVersion());
}
}
}
throw new Error("Failed to set up any context access");
Expand Down

0 comments on commit 99a8724

Please sign in to comment.