Skip to content

Commit ae87cf5

Browse files
committed
Updated sketch to show Trace
1 parent c381379 commit ae87cf5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

examples/Log/Log.ino

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,10 @@ void loop() {
5353
Log.notice ( "Log as Info with string value : %s"CR , stringValue1.c_str());
5454
Log.notice (F("Log as Debug with mixed values : %d, %d, %l, %l, %t, %T"CR ), intValue1 , intValue2,
5555
longValue1, longValue2, boolValue1, boolValue2);
56-
Log.warning ( "Log as Waring with bool value : %T"CR , boolValue1);
56+
Log.trace ( "Log as Trace with bool value : %T"CR , boolValue1);
57+
Log.warning ( "Log as Warning with bool value : %T"CR , boolValue1);
5758
Log.error ( "Log as Error with bool value : %T"CR , boolValue1);
5859
Log.fatal ( "Log as Fatal with bool value : %T"CR , boolValue1);
5960
Log.verbose (F("Log as Vebose with bool value : %T"CR CR CR ), boolValue2);
6061
delay(5000);
61-
}
62+
}

0 commit comments

Comments
 (0)