Skip to main content

Reveal hidden state in Python exceptions with automatic variable tracing

Project description

Tracelight

Reveal hidden state in Python exceptions with automatic variable tracing

Tracelight exposes the hidden state of your application by automatically logging all local variables in each frame of an exception's traceback. This gives you instant insight into what went wrong without having to add print statements or run in debug mode.

✨ Special Features

🔧 Pydantic Integration: Automatically detects and serializes Pydantic models (both v1 and v2) in exception traces, showing model data instead of object representations.

🤖 Agent-First Design: Built specifically for agent systems and MCP servers with structured error responses that never crash your workflows.

📊 Smart Variable Handling: Intelligently formats complex data structures, truncates large values, and excludes sensitive information.

Installation

pip install tracelight

Quick Start

import logging
from tracelight import log_exception_state

# Configure your logger however you like
logging.basicConfig(level=logging.DEBUG)
logger = logging.getLogger("exception_logger")

def some_function(x):
    a = x + 1
    b = a * 2
    return b / 0  # Deliberate error

try:
    some_function(5)
except Exception as e:
    # Log all local variables from each frame
    log_exception_state(e, logger)
    # Re-raise if needed
    raise

Key Features

Function Decorator

Automate error handling with the @traced decorator:

from tracelight import traced

@traced()
def risky_function(x, y):
    complicated_result = process(x)
    return complicated_result[y]  # Might raise KeyError

# All exceptions automatically logged with full variable context!
risky_function("input", "missing_key")

Agent Tool Decorator

Specifically designed for agent systems and MCP servers:

from tracelight.agent_utils import traced_tool

@traced_tool()
def weather_tool(location="New York"):
    # Complex implementation with HTTP calls etc.
    return get_weather_data(location) 

# If anything fails, returns a structured error dict:
# {"status": "error", "error_type": "...", ...}

Context Manager

Easily wrap specific blocks of code:

from tracelight import TracedError

# Automatically logs and preserves original exception
with TracedError(logger=my_logger):
    risky_operation()

🔧 Pydantic Model Support

Tracelight automatically detects and properly serializes Pydantic models in exception traces:

from pydantic import BaseModel
from tracelight import log_exception_state

class UserModel(BaseModel):
    name: str
    age: int
    email: str

def process_user(user_data):
    user = UserModel(**user_data)  # Pydantic model
    # ... processing that might fail
    return user.name.upper().split()[10]  # IndexError!

try:
    process_user({"name": "Alice Smith", "age": 30, "email": "alice@example.com"})
except Exception as e:
    # Tracelight will show the full Pydantic model data:
    # user = {'name': 'Alice Smith', 'age': 30, 'email': 'alice@example.com'}
    log_exception_state(e, logger)

Use Cases

Tracelight is particularly useful for:

1. Data‐Pipeline Breakdowns

Context: Multi-stage ETL jobs where a mysterious KeyError pops up.

With Tracelight: Your logs show the full contents of the record and every local variable—no need to sprinkle print calls or guess which field is missing.

2. Async Callback Chaos

Context: In an asyncio-driven system, tasks fire off callbacks and one raises an exception deep inside a helper function.

With Tracelight: You get the full context of all local variables in that callback frame—instantly pinpointing the cause.

3. Agent-Based Workflows

Context: Your LLM‐driven agent orchestrates several tools; one tool call fails with a parsing error.

With Tracelight: You immediately see all variables in context, including the raw responses and state data—so you can adjust your tool chain.

Integration with Agent Systems

Tracelight is designed to work seamlessly with agent-based systems and Model Context Protocol (MCP) servers. It can be integrated as a drop-in error handler to provide rich debugging information when tool calls or agent workflows fail unexpectedly.

from tracelight import log_exception_state
from tracelight.agent_utils import traced_tool

# Method 1: Wrap entire tool with decorator
@traced_tool()
def agent_tool(params):
    # Complex implementation...
    return process_complex_workflow(params)

# Method 2: Manual integration
def another_tool(params):
    try:
        # Complex tool implementation
        result = process_complex_workflow(params)
        return {"status": "success", "data": result}
    except Exception as e:
        # Log all variables in each frame of the exception
        log_exception_state(e, logger)
        # Return a graceful error response with helpful context
        return {
            "status": "error",
            "error": str(e),
            "error_type": type(e).__name__
        }

FastMCP Integration Example

Tracelight integrates seamlessly with FastMCP servers for rich error handling in MCP tools:

from mcp.server.fastmcp import FastMCP, Context
from pydantic import BaseModel, Field
from tracelight.agent_utils import traced_tool
import logging

# Setup logging
logger = logging.getLogger("mcp-server")

# Create FastMCP server
mcp = FastMCP("TracelightExample")

# Define request model
class WeatherRequest(BaseModel):
    city: str = Field(..., description="City to get weather for")
    country_code: str = Field(None, description="Optional 2-letter country code")

# Define response models
class WeatherResponse(BaseModel):
    temperature: float
    condition: str
    humidity: int

class ErrorResponse(BaseModel):
    status: str = "error"
    error_type: str
    error: str
    context: dict = None

# Create traced tool with automatic error handling
@mcp.tool()
@traced_tool(logger=logger)
async def get_weather(request: WeatherRequest, ctx: Context):
    """Get current weather with automatic error tracing."""
    # This will automatically log all variables if an exception occurs
    # and return a properly formatted error response
    
    if request.city.lower() == "atlantis":
        raise ValueError("City not found: Atlantis is a fictional city")  
        
    # Simulate API call
    weather_data = await fetch_weather_api(request.city)  # Would raise on failure
    
    # The decorator automatically handles any exceptions and returns
    # a structured error response that works with FastMCP
    return WeatherResponse(
        temperature=23.5,
        condition="sunny",
        humidity=65
    )

When the tool fails, Tracelight logs the complete variable state and returns a structured error response that works perfectly with FastMCP's tool response format, making it easy for agents to handle errors gracefully.

Advanced Usage

from tracelight import log_exception_state
from tracelight.agent_utils import format_for_agent

# Exclude sensitive variables
log_exception_state(e, logger, exclude_vars=["password", "api_key"])

# Custom formatting for agent consumption
log_exception_state(e, logger, format_var=format_for_agent)

# Customize log level and variable length
log_exception_state(e, logger, 
                   level=logging.ERROR,  # Log level
                   max_var_length=2000)  # Allow longer variable values

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tracelight-0.1.3.tar.gz (15.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tracelight-0.1.3-py3-none-any.whl (10.3 kB view details)

Uploaded Python 3

File details

Details for the file tracelight-0.1.3.tar.gz.

File metadata

  • Download URL: tracelight-0.1.3.tar.gz
  • Upload date:
  • Size: 15.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for tracelight-0.1.3.tar.gz
Algorithm Hash digest
SHA256 dfbd6b3d2f2e075e18b7265307d428776151f17426a528b4eccf93d2e53198e1
MD5 ce645a964c3a77af1e538493a92788e2
BLAKE2b-256 c249054e54e78699387e9de05c3204201da02663af70b4ab3ccbb42629d05459

See more details on using hashes here.

Provenance

The following attestation bundles were made for tracelight-0.1.3.tar.gz:

Publisher: python-publish.yml on newsbubbles/tracelight

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tracelight-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: tracelight-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 10.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for tracelight-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 b7cf4329332f72e2e1f3ec76f75c44ec13db4e6324b56371ad43a2b73b58dbec
MD5 7b453827874c5a28876f4c30c8ed6568
BLAKE2b-256 dc57bd698651ccec0012801be9fc8cc94995d1bc062f348fe7b9f68c25c6d978

See more details on using hashes here.

Provenance

The following attestation bundles were made for tracelight-0.1.3-py3-none-any.whl:

Publisher: python-publish.yml on newsbubbles/tracelight

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page