Skip to content

Commit

Permalink
Merge pull request #37 from target/disableLog
Browse files Browse the repository at this point in the history
change log level
  • Loading branch information
rrenkor committed Mar 12, 2024
2 parents 45fea52 + 0f4485a commit 8195d6f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public void displayLine(String line1Text, String line2Text) throws JposException
if(isConnected()) {
LOGGER.error(MARKER, "Line Display Failed to Display: " + jposException.getErrorCode() + ", " + jposException.getErrorCodeExtended());
} else {
LOGGER.error("Line Display Failed to Display: " + jposException.getErrorCode() + ", " + jposException.getErrorCodeExtended());
LOGGER.trace("Line Display Failed to Display: " + jposException.getErrorCode() + ", " + jposException.getErrorCodeExtended());
}
throw jposException;
}
Expand Down

0 comments on commit 8195d6f

Please sign in to comment.