Beautiful local log viewer with thread tracking and real-time updates
Project description
Logler ๐
Beautiful local log viewer with thread tracking and real-time updates
A modern, feature-rich log viewer that makes debugging a pleasure. View logs in your terminal with beautiful colors or start a web interface with WebSocket support for real-time updates.
โจ Features
- ๐จ Beautiful Terminal Output - Rich colors and formatting with thread visualization
- ๐ Gorgeous Web UI - Modern interface with file picker and live updates
- ๐งต Thread Tracking - Follow execution flow across log entries
- ๐ Correlation IDs - Track requests across microservices
- ๐ Distributed Tracing - OpenTelemetry span/trace support
- โก Real-time Streaming - WebSocket support for live log following
- ๐ Smart Filtering - By level, thread, pattern, or correlation ID
- ๐ Multi-Format Support - JSON, plain text, syslog, and more
- ๐ File Picker - Browse and select log files from the UI
- ๐ฏ Zero Config - Works out of the box
๐ค NEW: LLM Investigation Engine
Rust-powered log investigation designed for AI agents - the most LLM-friendly log tool available!
Core Features
- โก Blazing Fast - Search 1GB files in <50ms with parallel processing
- ๐ Semantic Search - Find errors by description, not just exact matches
- ๐งต Thread Following - Reconstruct request flows across distributed systems
- ๐ณ Hierarchy Visualization - Tree and waterfall views of nested operations, bottleneck detection
- ๐ Pattern Detection - Automatically find repeated errors and cascading failures
- ๐พ SQL Queries - DuckDB-powered custom analysis for deep investigation
- ๐ Statistical Analysis - Z-scores, percentiles, correlations, anomaly detection
- ๐ Bilingual Docs - Complete documentation in English and Japanese (ๆฅๆฌ่ช)
๐ NEW: Advanced LLM Features
Designed specifically for AI agents with limited context windows:
- ๐ก Auto Insights -
analyze_with_insights()automatically detects patterns, errors, and suggests next steps - ๐ Token-Efficient Output - 44x token savings with summary/count/compact modes
- ๐ Compare & Diff - Compare successful vs failed requests, before/after deployments
- ๐ Cross-Service Timeline - Unified view across microservices for distributed debugging
- ๐ Investigation Sessions - Track progress, undo/redo, save/resume investigations
- ๐ฏ Smart Sampling - Representative sampling with multiple strategies (diverse, errors-focused, chronological)
- ๐ Report Generation - Auto-generate markdown/text/JSON reports from investigation
- ๐ค Explain Feature - Plain English explanations of cryptic errors with next steps
- ๐ฌ Contextual Suggestions - AI suggests what to investigate next based on findings
import logler.investigate as investigate
# ๐ฏ One-line auto investigation with insights
result = investigate.analyze_with_insights(files=["app.log"])
print(result['insights']) # Automatic pattern detection, error analysis, suggestions
# ๐ Token-efficient search (44x smaller output)
errors = investigate.search(files=["app.log"], level="ERROR", output_format="summary")
# Returns aggregated stats instead of all entries - perfect for limited context windows
# ๐ Compare successful vs failed requests
diff = investigate.compare_threads(
files=["app.log"],
correlation_a="req-success-123",
correlation_b="req-failed-456"
)
print(diff['summary']) # "Thread B took 2341ms longer and had 5 errors (cache miss, timeout)"
# ๐ Cross-service distributed tracing
timeline = investigate.cross_service_timeline(
files={"api": ["api.log"], "db": ["db.log"], "cache": ["cache.log"]},
correlation_id="req-12345"
)
# See request flow: API โ DB โ Cache with latency breakdown
# ๐ Track investigation with sessions
session = investigate.InvestigationSession(files=["app.log"], name="incident_2024")
session.search(level="ERROR")
session.find_patterns()
session.add_note("Database connection pool exhausted")
report = session.generate_report(format="markdown") # Auto-generate report
# ๐ฏ Smart sampling (representative sample of huge logs)
sample = investigate.smart_sample(
files=["huge.log"],
strategy="errors_focused", # or "diverse", "representative", "chronological"
sample_size=50
)
# ๐ค Explain cryptic errors in plain English
explanation = investigate.explain(error_message="Connection pool exhausted", context="production")
print(explanation) # Common causes, next steps, production-specific advice
# ๐ณ Hierarchical thread visualization (NEW!)
hierarchy = investigate.follow_thread_hierarchy(
files=["app.log"],
root_identifier="req-123",
min_confidence=0.8 # Only show high-confidence relationships
)
# Automatic bottleneck detection
if hierarchy['bottleneck']:
print(f"Bottleneck: {hierarchy['bottleneck']['node_id']} took {hierarchy['bottleneck']['duration_ms']}ms")
# Get summary
summary = investigate.get_hierarchy_summary(hierarchy)
print(summary) # Shows tree structure, errors, bottlenecks
# Visualize in CLI
from tree_formatter import print_tree, print_waterfall
print_tree(hierarchy, mode="detailed", show_duration=True)
print_waterfall(hierarchy, width=100) # Waterfall timeline showing parallel operations
๐ Complete LLM documentation:
- English Guide - Complete API and examples
- ๆฅๆฌ่ชใฌใคใ - ๅฎๅ จใชใใญใฅใกใณใ
- API Reference - All investigation tools
- Examples - Production incident investigations
๐ Quick Start
Installation
# Using pip
pip install logler
# Using uv (recommended)
uv pip install logler
Usage
Start the web interface:
logler serve # Start with file picker
logler serve app.log # Open specific file
logler serve *.log # Open multiple files
logler serve --open # Auto-open browser
Security and path restrictions
- The legacy Python web UI now enforces a log root to avoid accidental exposure of arbitrary files. Set
LOGLER_ROOTto the directory you want to browse (defaults to the current working directory). Requests outside that root are rejected. - For production or remote access, place the service behind authentication/reverse proxies; the built-in UI is intended for local or trusted environments only.
View logs in terminal:
logler view app.log # View entire file
logler view app.log -n 100 # Last 100 lines
logler view app.log -f # Follow in real-time
logler view app.log --level ERROR # Filter by level
logler view app.log --grep "timeout" # Search pattern
logler view app.log --thread worker-1 # Filter by thread
Show statistics:
logler stats app.log # Show statistics
logler stats app.log --json # JSON output
Investigate logs with smart analysis:
logler investigate app.log --auto-insights # Auto-detect issues
logler investigate app.log --errors # Analyze errors
logler investigate app.log --patterns # Find repeated patterns
logler investigate app.log --thread worker-1 # Follow specific thread
logler investigate app.log --correlation req-123 # Follow correlation ID
logler investigate app.log --output summary # Token-efficient output
# ๐ณ NEW: Hierarchical Thread Visualization
logler investigate app.log --correlation req-123 --hierarchy # Show thread hierarchy tree
logler investigate app.log --trace trace-abc123 --hierarchy --waterfall # Show waterfall timeline
logler investigate app.log --correlation req-123 --hierarchy --flamegraph # Show flamegraph view
logler investigate app.log --hierarchy --show-error-flow # Analyze error propagation
logler investigate app.log --thread worker-1 --hierarchy --max-depth 3 # Limit hierarchy depth
Visualization Modes
Tree View - Shows parent-child relationships:
๐งต api-gateway (req-001, 520ms)
โโ ๐น auth-service (45ms)
โ โโ ๐ธ jwt-validate (5ms)
โ โโ ๐ธ user-lookup (25ms)
โโ ๐น product-service (450ms) โ ๏ธ SLOW
โ โโ ๐ธ inventory-check (340ms)
โ โ โโ ๐ธ db-query (300ms) โ ๏ธ
โ โโ ๐ธ cache-update (45ms) โ ERROR
โโ ๐น response-assembly (10ms)
Waterfall View (--waterfall) - Shows temporal overlap:
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Timeline: req-001 (520ms) โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ api-gateway โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ 520ms โ
โ โโ auth-service โโโโ 45ms โ
โ โโ product-service โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ 450ms โ
โ โ โโ inventory โโโโโโโโโโโโโโโโโโโโโโ 340ms โ
โ โ โโ cache-update โโโโโ 45ms โ
โ โโ response โโ 10ms โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Flamegraph View (--flamegraph) - Shows time distribution:
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ api-gateway (520ms) โ
โโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ auth (45) โ product-service (450ms) โ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ โ inventory-check (340ms) โ cache-update (45ms) โ โ
โโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Error Flow (--show-error-flow) - Traces error propagation:
๐ Error Flow Analysis
Root Cause:
โ cache-update failed at 10:00:00.450Z
Error: Redis connection refused
Path: api-gateway โ product-service โ cache-update
Impact: 3 nodes affected, request degraded
Recommendation: Check Redis connectivity
Watch for new files:
logler watch "*.log" # Watch for new log files
logler watch "app-*.log" -d /var/log # Specific directory
๐ธ Screenshots
Web Interface
Beautiful, modern web UI with file picker and real-time updates:
- ๐ Browse and select log files
- ๐จ Syntax-highlighted logs
- ๐งต Thread visualization
- ๐ Live statistics
- ๐ Real-time following with WebSocket
Terminal
Rich, colorful terminal output:
- ๐ Color-coded log levels
- ๐งต Thread badges
- ๐ Correlation ID tracking
- ๐ Thread timelines
๐ฏ Examples
Web Interface
# Start server and auto-open browser
logler serve --open
# Start with specific files
logler serve /var/log/app.log /var/log/error.log
# Custom host/port
logler serve --host 0.0.0.0 --port 9000
Then open your browser to http://localhost:8000 and:
- Click "๐ Open File" to browse log files
- Filter by level, search, or thread
- Click "๐ Follow" for real-time streaming
- View thread timelines and statistics
Terminal Viewing
# Basic viewing
logler view app.log
# Follow with filters
logler view app.log -f --level ERROR --grep "database"
# Multiple files
logler view app.log error.log -n 50
# Beautiful thread view
logler view app.log --thread worker-1
Statistics
# Human-readable stats
logler stats app.log
# JSON for scripting
logler stats app.log --json | jq '.by_level'
Investigation & Analysis
# Auto-detect issues with insights
logler investigate app.log --auto-insights
# Output: Automatic error analysis, pattern detection, actionable suggestions
# Analyze errors with context
logler investigate app.log --errors
# Shows error frequency, top error messages, time ranges
# Find repeated patterns
logler investigate app.log --patterns --min-occurrences 5
# Identifies logs that repeat 5+ times
# Follow a specific thread or request
logler investigate app.log --thread worker-1
logler investigate app.log --correlation req-abc123
# Token-efficient output for LLMs
logler investigate app.log --auto-insights --output summary
# Returns aggregated statistics instead of full logs
# JSON output for automation
logler investigate app.log --errors --json
๐จ Log Format Support
Logler automatically detects and parses:
JSON Logs:
{
"timestamp": "2024-01-15T10:00:00Z",
"level": "INFO",
"message": "User logged in",
"thread_id": "worker-1",
"correlation_id": "req-123",
"trace_id": "abc123",
"span_id": "span-001"
}
Plain Text:
2024-01-15 10:00:00 INFO [worker-1] [req-123] User logged in
2024-01-15 10:00:01 ERROR [worker-2] Database timeout trace_id=abc123
With Thread Tracking:
2024-01-15 10:00:00 INFO [worker-1] Request started
2024-01-15 10:00:01 DEBUG [worker-1] Processing...
2024-01-15 10:00:02 INFO [worker-1] Request completed
Logler groups these together and shows the complete thread timeline!
๐ฏ Perfect Log Format for Maximum Features
To unlock all of logler's capabilities (especially multi-level thread hierarchy), use this format:
JSON (Recommended):
{
"timestamp": "2024-01-15T10:00:00.123Z",
"level": "INFO",
"message": "Processing user request",
"thread_id": "worker-1",
"correlation_id": "req-abc123",
"trace_id": "trace-xyz789",
"span_id": "span-001",
"parent_span_id": "span-000"
}
Field Guide:
| Field | Purpose | Enables |
|---|---|---|
timestamp |
When the event occurred (ISO 8601) | Timeline, duration analysis |
level |
Log level (DEBUG/INFO/WARN/ERROR/FATAL) | Filtering, error detection |
message |
Human-readable description | Search, pattern detection |
thread_id |
Thread/worker identifier | Thread grouping, timeline |
correlation_id |
Request ID across services | Cross-service tracing |
trace_id |
Distributed trace identifier | OpenTelemetry integration |
span_id |
Unique operation identifier | Hierarchy building |
parent_span_id |
Parent operation's span_id | Multi-level hierarchy trees |
Why parent_span_id matters:
Without it, logler infers hierarchy from naming patterns (worker-1.task-a) or temporal proximity. With explicit parent_span_id, you get:
- 100% accurate parent-child relationships
- Deep hierarchy trees (not just 1-2 levels)
- Precise bottleneck detection
- Accurate error propagation tracing
Plain Text Alternative:
2024-01-15T10:00:00.123Z INFO [worker-1] [req-abc123] [trace:xyz789] [span:001] [parent:000] Processing user request
Logler will parse bracketed fields automatically. Use consistent formatting across your application.
๐งต Thread Tracking
Logler automatically tracks threads and shows:
- ๐ Log count per thread
- โ Error count per thread
- โฑ๏ธ Thread duration
- ๐ Associated correlation IDs
- ๐ Thread timeline
Example:
logler view app.log
Shows threads in sidebar with:
- Thread ID badge
- Number of logs
- Error count (if any)
Click any thread to filter logs!
๐ Correlation & Tracing
Track requests across services:
# Logs with correlation IDs are automatically linked
logler view app.log
In the web UI:
- See correlation IDs in log entries
- Filter by correlation ID
- View complete request flow
- Track distributed traces
โ๏ธ Configuration
Logler works with zero configuration, but you can customize:
# Server options
logler serve --host 0.0.0.0 --port 8000
# View options
logler view app.log --no-color # Disable colors
logler view app.log -n 1000 # Show more lines
๐ ๏ธ Development
# Clone repository
git clone https://github.com/gabu-quest/logler.git
cd logler
# Install in development mode
pip install -e ".[dev]"
# Run tests
pytest
# Format code
black logler
ruff check logler
๐ฆ What's Included
- logler - Main CLI command
- Rich Terminal UI - Beautiful colored output
- FastAPI Web Server - Modern web interface
- WebSocket Support - Real-time log streaming
- Thread Tracker - Correlation and grouping
- Smart Parser - Multi-format support
- File Watcher - Monitor for new files
๐ค Contributing
Contributions welcome! Please feel free to submit a Pull Request.
๐ License
MIT License - see LICENSE file for details.
๐ Acknowledgments
Built with:
- Rich - Beautiful terminal output
- FastAPI - Modern web framework
- HTMX - Dynamic web UI
- TailwindCSS - Styling
- Alpine.js - Reactive components
๐ก Pro Tips
- Use
--followmode for real-time debugging - Filter by thread to trace execution flow
- Use the web UI for complex log analysis
- Export stats as JSON for automation
- Watch directories for new log files
๐ Examples
Debug a specific request
# Find correlation ID
logler view app.log --grep "req-12345"
# Follow that request across services
logler view app.log service.log --grep "req-12345"
Monitor errors in real-time
logler view app.log -f --level ERROR
Analyze thread behavior
logler view app.log --thread worker-1
Beautiful web dashboard
logler serve app.log --open
# Then explore threads, traces, and statistics!
Made with โค๏ธ for developers who love beautiful tools
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file logler-1.0.7.tar.gz.
File metadata
- Download URL: logler-1.0.7.tar.gz
- Upload date:
- Size: 1.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4975262baff33317ee4cf054aee5126f8bfa90867e70487a4388674c255c348
|
|
| MD5 |
5af8f0cbba09c8be3f02eb6d114eb52f
|
|
| BLAKE2b-256 |
8d2546e0e3f7c9a761d652ab0248c840eb3d0c222b05c0154d23108bf8d49d77
|
Provenance
The following attestation bundles were made for logler-1.0.7.tar.gz:
Publisher:
pypi.yml on gabu-quest/logler
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
logler-1.0.7.tar.gz -
Subject digest:
f4975262baff33317ee4cf054aee5126f8bfa90867e70487a4388674c255c348 - Sigstore transparency entry: 826027377
- Sigstore integration time:
-
Permalink:
gabu-quest/logler@f299e0f34bee7b0e79146156c27d22c4b707a314 -
Branch / Tag:
refs/tags/v1.0.7 - Owner: https://github.com/gabu-quest
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi.yml@f299e0f34bee7b0e79146156c27d22c4b707a314 -
Trigger Event:
push
-
Statement type:
File details
Details for the file logler-1.0.7-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: logler-1.0.7-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ebc0b30495370645a0f74ea4d4bceedd51cf57c31fa8cc167c2d68ba05ba2cd4
|
|
| MD5 |
0550d2c4c767644085905ad2e1d38179
|
|
| BLAKE2b-256 |
9ee6df88f32f4f67173327e084926086c5b7fa30615f54c7dc0adaf6070f9150
|
Provenance
The following attestation bundles were made for logler-1.0.7-cp311-cp311-win_amd64.whl:
Publisher:
pypi.yml on gabu-quest/logler
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
logler-1.0.7-cp311-cp311-win_amd64.whl -
Subject digest:
ebc0b30495370645a0f74ea4d4bceedd51cf57c31fa8cc167c2d68ba05ba2cd4 - Sigstore transparency entry: 826027456
- Sigstore integration time:
-
Permalink:
gabu-quest/logler@f299e0f34bee7b0e79146156c27d22c4b707a314 -
Branch / Tag:
refs/tags/v1.0.7 - Owner: https://github.com/gabu-quest
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi.yml@f299e0f34bee7b0e79146156c27d22c4b707a314 -
Trigger Event:
push
-
Statement type:
File details
Details for the file logler-1.0.7-cp311-cp311-manylinux_2_38_x86_64.whl.
File metadata
- Download URL: logler-1.0.7-cp311-cp311-manylinux_2_38_x86_64.whl
- Upload date:
- Size: 17.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.38+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd0535ed3aec20294d4f9edcfbe9179b153fe7675dbac694a3dca3fab7c9ee77
|
|
| MD5 |
58f82d1613a18ed47ccf70f01dbfab93
|
|
| BLAKE2b-256 |
bfa3d03f9c13cca5720603c410dccc997cfea0c2e59f1d1be30b44f356cc3f9a
|
Provenance
The following attestation bundles were made for logler-1.0.7-cp311-cp311-manylinux_2_38_x86_64.whl:
Publisher:
pypi.yml on gabu-quest/logler
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
logler-1.0.7-cp311-cp311-manylinux_2_38_x86_64.whl -
Subject digest:
cd0535ed3aec20294d4f9edcfbe9179b153fe7675dbac694a3dca3fab7c9ee77 - Sigstore transparency entry: 826027411
- Sigstore integration time:
-
Permalink:
gabu-quest/logler@f299e0f34bee7b0e79146156c27d22c4b707a314 -
Branch / Tag:
refs/tags/v1.0.7 - Owner: https://github.com/gabu-quest
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi.yml@f299e0f34bee7b0e79146156c27d22c4b707a314 -
Trigger Event:
push
-
Statement type:
File details
Details for the file logler-1.0.7-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: logler-1.0.7-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 13.5 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0913ac168bd56ff40b1a38a03878c4d82d8fa1e6d140ebecce2356697339043f
|
|
| MD5 |
50f22f1d98c88045b678bde9dda15bc3
|
|
| BLAKE2b-256 |
1e979519cfcf435b39c21517d2f779e8ae5d8cac0e31c0090af60064f70679b7
|
Provenance
The following attestation bundles were made for logler-1.0.7-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
pypi.yml on gabu-quest/logler
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
logler-1.0.7-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
0913ac168bd56ff40b1a38a03878c4d82d8fa1e6d140ebecce2356697339043f - Sigstore transparency entry: 826027439
- Sigstore integration time:
-
Permalink:
gabu-quest/logler@f299e0f34bee7b0e79146156c27d22c4b707a314 -
Branch / Tag:
refs/tags/v1.0.7 - Owner: https://github.com/gabu-quest
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi.yml@f299e0f34bee7b0e79146156c27d22c4b707a314 -
Trigger Event:
push
-
Statement type:
File details
Details for the file logler-1.0.7-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: logler-1.0.7-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 14.7 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
016376803d416f97490f43efd4029168b84fe565e83f1f16b6dc1eed873e4c44
|
|
| MD5 |
d2e0696f4be0436a20c4045843b97545
|
|
| BLAKE2b-256 |
e0ad4199c8345d03d6b03a88503dfc7b17d5c009646263b04fda410c0df95035
|
Provenance
The following attestation bundles were made for logler-1.0.7-cp311-cp311-macosx_10_12_x86_64.whl:
Publisher:
pypi.yml on gabu-quest/logler
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
logler-1.0.7-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
016376803d416f97490f43efd4029168b84fe565e83f1f16b6dc1eed873e4c44 - Sigstore transparency entry: 826027478
- Sigstore integration time:
-
Permalink:
gabu-quest/logler@f299e0f34bee7b0e79146156c27d22c4b707a314 -
Branch / Tag:
refs/tags/v1.0.7 - Owner: https://github.com/gabu-quest
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi.yml@f299e0f34bee7b0e79146156c27d22c4b707a314 -
Trigger Event:
push
-
Statement type: