jimmyw/esp_logger

0.0.1

uploaded 7 months ago
Framework to collect, buffer, stream (syslog), filter logs.

readme

# ESP Logger example

This is my log chain project for esp-idf.

## How to use example

These needs to be added in this order, early to start log buffering
```
    // This initialize a capture, that takes over esp-idf log output, and provides an interface
    // for log modules to hook up, using log_capture_register_handler()
    ESP_ERROR_CHECK(log_capture_early_init());

    // This module registers a buffer handler, that saves logs into RAM, for later retrival
    ESP_ERROR_CHECK(log_buffer_early_init());

    // This module initializes a colorful log print output, that we are used to.
    ESP_ERROR_CHECK(log_print_early_init());
```

This can be run to add commands:
```
    // These are less critical initiazions that adds console commands.
    ESP_ERROR_CHECK(log_buffer_init());
    ESP_ERROR_CHECK(log_test_init());
```

** NOTE **
Make sure CONFIG_LOG_COLORS is NOT enabled in your sdk config, colors will be added anyway from our own printer.
** NOTE **

Use dmesg to print your old logs.

Use log cmd to test log.

### Configure the project

## Example Output

## Troubleshooting

Links

Supports all targets

Maintainer

  • Jimmy Wennlund <jimmy@wennlund.nu>

License: Apache-2.0

To add this component to your project, run:

idf.py add-dependency "jimmyw/esp_logger^0.0.1"

or download archive

Dependencies

  • ESP-IDF >=4.4.0
  • Examples:

    esp-logger-example

    To create a project from this example, run:

    idf.py create-project-from-example "jimmyw/esp_logger^0.0.1:esp-logger-example"

    or download archive

    Stats

    • Downloaded in total
      Downloaded in total 9 times
    • Downloaded this version
      This version: 9 times

    Badge

    jimmyw/esp_logger version: 0.0.1
    |