Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/thijse/arduino-log

Simple application log library. supporting multiple log levels, custom output & flash memory support.
https://github.com/thijse/arduino-log

arduino arduino-library avr esp32 esp8266 logging logging-library platformio

Last synced: about 1 month ago
JSON representation

Simple application log library. supporting multiple log levels, custom output & flash memory support.

Awesome Lists containing this project

README

        

![ArduinoLog logo](/Images/logo.png?raw=true )
ArduinoLog - C++ Log library for Arduino devices
====================
[![Build Status](https://travis-ci.org/thijse/Arduino-Log.svg?branch=master)](https://travis-ci.org/thijse/Arduino-Log)
[![License](https://img.shields.io/badge/license-MIT%20License-blue.svg)](http://doge.mit-license.org)

*An minimalistic Logging framework for Arduino-compatible embedded systems.*

ArduinoLog is a minimalistic framework to help the programmer output log statements to an output of choice, fashioned after extensive logging libraries such as log4cpp ,log4j and log4net. In case of problems with an application, it is helpful to enable logging so that the problem can be located. ArduinoLog is designed so that log statements can remain in the code with minimal performance cost. In order to facilitate this the loglevel can be adjusted, and (if your code is completely tested) all logging code can be compiled out.

## Features

* Different log levels (Error, Info, Warn, Debug, Verbose )
* Supports multiple variables
* Supports formatted strings
* Supports formatted strings from flash memory
* Fixed memory allocation (zero malloc)
* MIT License

## Tested for

* All Arduino boards (Uno, Due, Mini, Micro, Yun...)
* ESP8266
* ESP32

## Downloading

This package has been published to the Arduino & PlatformIO package managers, but you can also download it from GitHub.

- By directly loading fetching the Archive from GitHub:
1. Go to [https://github.com/thijse/Arduino-Log](https://github.com/thijse/Arduino-Log)
2. Click the DOWNLOAD ZIP button in the panel on the
3. Rename the uncompressed folder **Arduino-Log-master** to **Arduino-Log**.
4. You may need to create the libraries subfolder if its your first library.
5. Place the **Arduino-Log** library folder in your **/libraries/** folder.
5. Restart the IDE.
6. For more information, [read this extended manual](http://thijs.elenbaas.net/2012/07/installing-an-arduino-library/)

## Quick start

```c++
Serial.begin(9600);

// Initialize with log level and log output.
Log.begin (LOG_LEVEL_VERBOSE, &Serial);

// Start logging text and formatted values
Log.errorln ( "Log as Error with binary values : %b, %B" , 23 , 345808);
Log.warning (F("Log as Warning with integer values from Flash : %d, %d"CR) , 34 , 799870);
```

See [Log-basic.ino](examples/Log-basic/Log-basic.ino) example

## Usage

### Initialisation

The log library needs to be initialized with the log level of messages to show and the log output. The latter will often be the Serial interface.
Optionally, you can indicate whether to show the log type (error, debug, etc) for each line.

```
begin(int level, Print* logOutput, bool showLevel)
begin(int level, Print* logOutput)
```

The loglevels available are

```
* 0 - LOG_LEVEL_SILENT no output
* 1 - LOG_LEVEL_FATAL fatal errors
* 2 - LOG_LEVEL_ERROR all errors
* 3 - LOG_LEVEL_WARNING errors, and warnings
* 4 - LOG_LEVEL_NOTICE errors, warnings and notices
* 5 - LOG_LEVEL_TRACE errors, warnings, notices & traces
* 6 - LOG_LEVEL_VERBOSE all
```

example

```
Log.begin(LOG_LEVEL_ERROR, &Serial, true);
```

if you want to fully remove all logging code, uncomment `#define DISABLE_LOGGING` in `ArduinoLog.h`, this may significantly reduce your sketch/library size.

### Log events

The library allows you to log on different levels by the following functions

```c++
void fatal (const char *format, va_list logVariables);
void error (const char *format, va_list logVariables);
void warning (const char *format, va_list logVariables);
void notice (const char *format, va_list logVariables);
void trace (const char *format, va_list logVariables);
void verbose (const char *format, va_list logVariables);
```

where the format string can be used to format the log variables

```
* %s display as string (char*)
* %S display as string from flash memory (__FlashStringHelper* or char[] PROGMEM)
* %c display as single character
* %C display as single character or as hexadecimal value (prefixed by `0x`) if not a printable character
* %d display as integer value
* %l display as long value
* %u display as unsigned long value
* %x display as hexadecimal value
* %X display as hexadecimal value prefixed by `0x` and leading zeros
* %b display as binary number
* %B display as binary number, prefixed by `0b`
* %t display as boolean value "t" or "f"
* %T display as boolean value "true" or "false"
* %D,%F display as double value
* %p display a printable object
```

Newlines can be added using the `CR` keyword or by using the `...ln` version of each of the log functions. The difference when using the `...ln` is that the newline is placed after suffix, and only a single newline can be added. Some terminals prefer `NL` (New line).

### Examples

```c++
Log.fatal (F("Log as Fatal with string value from Flash : %s"CR ) , "value" );
Log.errorln ( "Log as Error with binary values : %b, %B" , 23 , 345808);
Log.warning (F("Log as Warning with integer values from Flash : %d, %d"CR) , 34 , 799870);
Log.notice ( "Log as Notice with hexadecimal values : %x, %X"CR , 21 , 348972);
Log.trace ( "Log as Trace with Flash string : %S"CR ) , F("value") );
Log.verboseln (F("Log as Verbose with bool value from Flash : %t, %T" ) , true, false );
```

### Disable library

(if your code is completely tested) all logging code can be compiled out. Do this by uncommenting
```c++
#define DISABLE_LOGGING
```
in `Logging.h`. This may significantly reduce your project size.

## Advanced usage

Advanced features are demonstrated in [Log-advanced](examples/Log-advanced/Log-advanced.ino) example.

### Displaying a printable object

Some Arduino objects are printable. That is, they implement the `Printable` interface and are able for format their own representation
As an example, the IPadress object is printable:

```c++
IPAddress ipAddress(192, 168, 0, 1);
Log.verboseln ("ip address : %p", ipAddress);
```

[this example](https://forum.arduino.cc/t/printable-classes/438816) shows how to make your own classes printable

### Storing messages in Flash memory

Flash strings log variables can be stored and reused at several places to reduce final hex size.

```c++
const __FlashStringHelper * logAs = F("Log as");
Log.fatal (F("%S Fatal with string value from Flash : %s"CR ) , logAs, "value" );
Log.error ( "%S Error with binary values : %b, %B"CR , logAs, 23 , 345808);
```

If you want to declare that string globally (outside of a function), you will need to use the PROGMEM macro instead.

```c++
const char LOG_AS[] PROGMEM = "Log as ";

void logError() {
Log.error ( "%S Error with binary values : %b, %B"CR , PSTRPTR(LOG_AS), 23 , 345808);
}
```

### Custom logging format

You can modify your logging format by defining a custom prefix & suffix for each log line. For example:
```c++
void printPrefix(Print* _logOutput, int logLevel) {
printTimestamp(_logOutput);
printLogLevel (_logOutput, logLevel);
}
```
will result in log timestamps very similar to e.g. NLOG:
```
00:47:51.432 VERBOSE Message to be logged
```

## Credit

Based on library by
* [Bernd Klein](https://github.com/mrRobot62)

Bugfixes & features by
* [rahuldeo2047](https://github.com/rahuldeo2047)
* [NOX73](https://github.com/NOX73)
* [Dave Hylands](https://github.com/dhylands)
* [Jos Hanon](https://github.com/Josha)
* [Bertrand Lemasle](https://github.com/blemasle)
* [Mikael Falkvidd](https://github.com/mfalkvidd)
* [Rowan Goemans](https://github.com/rowanG077)
* [Nils Bokermann](https://github.com/sanddorn)
* [Florian](https://github.com/1technophile)
* [wrong-kendall](https://github.com/wrong-kendall)
* [bitli](https://github.com/bitli)
* [ChristianBauerAMDC](https://github.com/ChristianBauerAMDC)

## On using and modifying libraries

- [http://www.arduino.cc/en/Main/Libraries](http://www.arduino.cc/en/Main/Libraries)
- [http://www.arduino.cc/en/Reference/Libraries](http://www.arduino.cc/en/Reference/Libraries)

## Copyright

ArduinoLog (Copyright © 2017,2018, 2019, 2021) is provided under MIT License.