Skip to content

adarwoo/ulogger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

41 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Β΅Logger

Modern terminal-based viewer for ULog embedded traces

Β΅Logger is a powerful TUI (Text User Interface) application for viewing real-time logs from embedded systems using the ULog API. It combines a serial console with intelligent log parsing and filtering capabilities.

Release Python

✨ Features

  • πŸ–₯️ Modern Textual TUI - Beautiful terminal interface with rich formatting
  • πŸ“¦ Standalone Executable - No Python installation required (Windows)
  • 🎨 Color-Coded Logs - Different colors for each log level
  • πŸ” Advanced Filtering - Filter by file, log level, or search text
  • πŸ’Ύ Persistent Settings - Remembers recent files and COM ports
  • πŸ”Œ Hot-Swap COM Ports - Change serial ports without restarting
  • πŸ“Š Real-Time Statistics - Live log counts and buffer status
  • πŸ”Ž Log Viewer - Browse all log definitions from ELF file

πŸš€ Quick Start

Download Standalone Executable (Windows)

  1. Download ulogger.exe from latest release
  2. Double-click to run (auto-opens in terminal) or run from command line
  3. Select your ELF file and COM port from the dialogs

Install with pip

pip install adarwoo-ulogger

Run from source

git clone https://github.com/adarwoo/ulogger.git
cd ulogger
poetry install
poetry run python -m ulogger

πŸ“– Usage

ulogger [elf_file] [-C COM_PORT] [-l LEVEL] [-b BUFFER_DEPTH]

Example:

ulogger firmware.elf -C COM4

First time usage: Simply run ulogger and use the interactive dialogs to select your ELF file and COM port.

πŸ“Έ Screenshots

Main Interface

Real-time log viewing with color-coded levels and filtering

Main View

File Filter

Filter logs by source file with per-level counts

File Filter

Level Filter

Select which log levels to display

Level Filter

Log Entries Viewer

Browse all log definitions from the ELF file with sort and search

Log Entries

File Selection

Select ELF file from recent files or browse

ELF File Selection

COM Port Selection

Choose serial port for live logging

Port Selection

πŸ’‘ Note: Screenshots captured using Textual's built-in SVG export feature for crisp, scalable images.

Usage

You install the viewer using pip install or build a windows executable with pyinstaller.

usage: ulog_console.exe [-h] [-l LEVEL] [-x] [-C COMM] [-b BUFFER_DEPTH] elf

ulog trace viewer (ncurses + live UART)

positional arguments:
  elf                   Path to ELF file with .logs section

options:
  -h, --help            show this help message and exit
  -l, --level LEVEL     Display log level threshold (0–8)
  -x, --clear           Clear screen on ELF reload
  -C, --comm COMM       UART serial port (e.g. /dev/ttyUSB0 or COM4)
  -b, --buffer-depth BUFFER_DEPTH
                        Internal buffer depth (e.g. 100k, 2M). Default: 100000

⌨️ Keyboard Controls

Key Action
z Freeze/Unfreeze display (buffer keeps filling)
c Clear all logs
l Open level filter dialog
+/- Expand/Contract level filter
f Open file filter dialog
p Select COM port
r Reset all filters
e View all log entry definitions from ELF
v View all log lines in modal
q Quit application
↑/↓ Scroll up/down
PgUp/PgDn Page up/down
Home/End Jump to top/bottom

In File/Level Filter Dialogs:

  • Click on items to toggle selection
  • Press 0-8 on a file to view logs at that level
  • Press Enter on a file to view all its logs
  • Esc or q to close dialog

In Log Entries Viewer:

  • s - Cycle sort mode (none β†’ level β†’ file)
  • Ctrl+F - Toggle search
  • Esc - Close search or exit viewer

πŸ“‹ Command-Line Options

usage: ulogger [-h] [-l LEVEL] [-x] [-C COMM] [-b BUFFER_DEPTH] [elf]

positional arguments:
  elf                   Path to ELF file with .logs section (optional)

options:
  -h, --help            Show help message
  -l, --level LEVEL     Display log level threshold (0-8, default: 8)
  -x, --clear           Clear screen on ELF reload
  -C, --comm COMM       UART serial port (e.g. /dev/ttyUSB0 or COM4)
  -b, --buffer-depth BUFFER_DEPTH
                        Internal buffer depth (e.g. 100k, 2M, default: 100000)

🎯 Log Levels

Level Name Color Use Case
0 ERROR Red Critical errors
1 WARN Yellow Warnings
2 MILE Bright Yellow Milestones
3 INFO Green General info
4 TRACE Blue Trace execution
5 DEBUG0 White Debug info
6 DEBUG1 Gray Detailed debug
7 DEBUG2 Dim Very detailed
8 DEBUG3 Dim Maximum detail

πŸ—οΈ Building from Source

Requirements

  • Python 3.9+
  • Poetry (package manager)

Development Setup

# Clone repository
git clone https://github.com/adarwoo/ulogger.git
cd ulogger

# Install dependencies
poetry install

# Run in development
poetry run python -m ulogger

# Run tests (if available)
poetry run pytest

Building Standalone Executable

# Install build dependencies
poetry add --group dev pyinstaller

# Generate icon (optional)
python create_icon.py

# Build executable
poetry run pyinstaller ulogger.spec

# Output: dist/ulogger.exe

The executable includes:

  • βœ… All Python dependencies bundled
  • βœ… Auto-terminal launch when double-clicked
  • βœ… Custom icon
  • βœ… No installation required
  • βœ… ~8.5MB single file

πŸ”§ Technical Details

ULog Library Performance

On AVR microcontrollers, ULog provides exceptional performance:

Metric Value Description
Library Size < 300 bytes Includes UART handling and double buffer
Throughput > 3000 msg/s At 115200 baud
Flash per Log 8 bytes Zero RAM overhead
RAM Usage 30-100 bytes Configurable buffer size
CPU Cycles/Trace 214 (11Β΅s) Single trace, no arguments
CPU Load @ 300 msg/s < 1% Includes ULog and UART
IDLE Latency < 23Β΅s Additional reactor handler latency

How It Works

ULog uses a clever approach different from other logging libraries:

  1. Zero-Cost Metadata - All trace information (file, line, format, types) stored in ELF .logs section (unmapped, uses no flash)
  2. Minimal Runtime - Only trace ID and raw data sent over UART
  3. COBS Framing - Efficient binary framing (2 extra bytes per message)
  4. Double Buffering - One buffer for logging, one for UART transmission
  5. Reactor-Safe - Second buffer fills only when system is idle

Benefits

βœ… No preprocessing required - Unlike Trice, no JSON extraction needed βœ… Tiny footprint - 100 debug statements cost < 1KB flash βœ… No code intrusion - Linker script patch optional βœ… Smart filtering - Viewer knows all possible traces upfront βœ… Type-safe - Variable types extracted from ELF, no format strings needed

πŸ“¦ Dependencies

Runtime

  • textual >= 0.96.1 - Modern TUI framework
  • pyserial >= 3.5 - Serial port communication
  • platformdirs >= 4.0.0 - Cross-platform settings storage
  • pyelftools >= 0.31 - ELF file parsing
  • sqlalchemy >= 2.0.0 - Database models

Development

  • poetry - Dependency management
  • pyinstaller >= 6.16.0 - Executable building (optional)

🀝 Contributing

Contributions welcome! Please feel free to submit a Pull Request.

πŸ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.

πŸ”— Related Projects

πŸ’¬ Support


Made with ❀️ for embedded developers

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors