You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: references/Developer Guide to Logging.md
+19-15Lines changed: 19 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ When using the `ArduinoLog` library, the logging methods correspond to different
27
27
- Corresponds to `Log.warning()`.
28
28
- Example: `Log.warning("This is a warning");`
29
29
30
-
5.**`LOG_LEVEL_INFO` and `LOG_LEVEL_NOTICE`**:
30
+
5.**`LOG_LEVEL_INFO` and `LOG_LEVEL_NOTICE`**:
31
31
32
32
- Informational messages, warnings, and errors.
33
33
- Corresponds to `Log.info()` and `Log.notice()`.
@@ -61,23 +61,27 @@ To use logging in your code, include the following:
61
61
62
62
### Examples
63
63
64
+
##### (note: all of these methods have variants without the trailing 'ln' e.g. Log.info(). The difference being the ln variant adds a newline character (\n))
0 commit comments