Skip to content

Commit

Permalink
better shouldDebug logic
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Oct 7, 2018
1 parent afe8d48 commit fc0fb89
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -412,6 +412,9 @@ public static boolean shouldDebug(Debuggable caller) {
if (debugOverride) {
return true;
}
if (!showDebug) {
return false;
}
boolean should_send = true;

// Attempt to see if the debug should even be sent by checking the
Expand Down

0 comments on commit fc0fb89

Please sign in to comment.