Skip to content

Commit

Permalink
Fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank Delporte committed Jun 3, 2020
1 parent 875f871 commit 682b52a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public DigitalInputExample() {
*/
public static void main(String[] args) throws Exception {
// configure logging output
System.setProperty(org.slf4j.simple.SimpleLogger.DEFAULT_LOG_LEVEL_KEY, "INFO");
System.setProperty("org.slf4j.simpleLogger.defaultLogLevel", "INFO");

// TODO :: REMOVE TEMPORARY PROPERTIES WHEN NATIVE PIGPIO LIB IS READY
// this temporary property is used to tell
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class DigitalInputExampleUsingDependencyInjection {
public static void main(String[] args) throws Exception {

// configure logging output
System.setProperty(org.slf4j.simple.SimpleLogger.DEFAULT_LOG_LEVEL_KEY, "TRACE");
System.setProperty("org.slf4j.simpleLogger.defaultLogLevel", "TRACE");

// TODO :: REMOVE TEMPORARY PROPERTIES WHEN NATIVE PIGPIO LIB IS READY
// this temporary property is used to tell
Expand Down

0 comments on commit 682b52a

Please sign in to comment.