This skill is adpated from "Logging sucks. And here's how to make it better. by Boris Tane.
When helping with logging, observability, or debugging strategies, follow these principles:
Core Philosophy
- Logs are optimized for querying, not writing — always design with debugging in mind
- Context is everything — a log without correlation IDs is useless in distributed systems
- Logs are for humans during incidents, not just for compliance or "just in case"
- If you can't filter and search your logs effectively, they provide zero value
Structured Logging Requirements
- Always use key-value pairs (JSON) instead of string interpolation
- Bad: "Payment failed for user 123"
- Good: {"event": "payment_failed", "user_id": "123", "reason": "insufficient_funds", "amount": 99.99}
- Structured logs are machine-parseable, enabling aggregation, alerting, and dashboards
Required Fields for Every Log Event
- timestamp — ISO 8601 with timezone (e.g., 2025-01-24T20:00:00Z)
- level — debug, info, warn, error (be consistent, don't invent new levels)
- event — machine-readable event name, snake_case (e.g., user_login_success)
- request_id or trace_id — for correlating logs across a single request
- service — which service/application emitted this log
- environment — prod, staging, dev
Examples of High-Cardinality Fields (always include when available):
- user_id, org_id, account_id — who is affected
- request_id, trace_id, span_id — for distributed tracing
- order_id, transaction_id, job_id — domain-specific identifiers
These fields are what make logs actually queryable during incidents. Without them, you're grepping through millions of lines blindly.
Look for opportunities for high-cardinality fields that can help you identify the root cause of an issue quickly.
Context Propagation
- Pass trace/request IDs through all service boundaries (HTTP headers, message queues, etc.)
- Downstream services must inherit correlation IDs from upstream
- Use middleware or interceptors to automatically inject context into every log
- For async jobs, store and restore the original request context
Log Levels — Use Them Correctly:
- debug — Verbose details for local development, usually disabled in production
- info — Normal operations worth recording (user actions, job completions, deploys)
- warn — Something unexpected happened but the system handled it (retries, fallbacks)
- error — Something failed and likely needs human attention (exceptions, failed requests)
Don't log errors for expected conditions (e.g., user enters wrong password)
What to Log:
- Request entry and exit points (with duration)
- State transitions (order created → paid → shipped)
- External service calls (with latency and response codes)
- Authentication and authorization events
- Background job starts, completions, and failures
- Retry attempts and circuit breaker state changes
What NOT to Log:
- Sensitive data (passwords, tokens, PII, credit card numbers)
- Logs inside tight loops (will generate millions of useless entries)
- Success cases that provide no debugging value
- Redundant information already captured by infrastructure (load balancer logs, etc.)
Naming Conventions:
- Be consistent across all services — agree on field names as a team
- Use snake_case for field names: user_id, not userId or user-id
- Use past-tense verbs for events: payment_completed, not complete_payment
- Prefix events by domain when helpful: auth.login_failed, billing.invoice_created
Performance Considerations:
- Use sampling for high-volume debug logs in production
- Avoid logging inside hot paths unless absolutely necessary
- Buffer and batch log writes to reduce I/O overhead
- Consider log levels that can be changed at runtime without redeploying
During Incidents:
- Your logs should answer: Who was affected? What failed? When? Why?
- If you can't answer these within 5 minutes of querying, your logging strategy needs work
- Post-incident: add the logs you wished you had
1---2name: logging-best-practices3description: Use before implementing logs in a medium to large scale production system.4---56> This skill is adpated from ["Logging sucks. And here's how to make it better.](https://loggingsucks.com/) by Boris Tane.78When helping with logging, observability, or debugging strategies, follow these principles:910## Core Philosophy1112- Logs are optimized for querying, not writing — always design with debugging in mind13- Context is everything — a log without correlation IDs is useless in distributed systems14- Logs are for humans during incidents, not just for compliance or "just in case"15- If you can't filter and search your logs effectively, they provide zero value1617## Structured Logging Requirements1819- Always use key-value pairs (JSON) instead of string interpolation20- Bad: "Payment failed for user 123"21- Good: {"event": "payment_failed", "user_id": "123", "reason": "insufficient_funds", "amount": 99.99}22- Structured logs are machine-parseable, enabling aggregation, alerting, and dashboards2324## Required Fields for Every Log Event2526- timestamp — ISO 8601 with timezone (e.g., 2025-01-24T20:00:00Z)27- level — debug, info, warn, error (be consistent, don't invent new levels)28- event — machine-readable event name, snake_case (e.g., user_login_success)29- request_id or trace_id — for correlating logs across a single request30- service — which service/application emitted this log31- environment — prod, staging, dev3233## Examples of High-Cardinality Fields (always include when available):3435- user_id, org_id, account_id — who is affected36- request_id, trace_id, span_id — for distributed tracing37- order_id, transaction_id, job_id — domain-specific identifiers3839These fields are what make logs actually queryable during incidents. Without them, you're grepping through millions of lines blindly.4041Look for opportunities for high-cardinality fields that can help you identify the root cause of an issue quickly.4243## Context Propagation4445- Pass trace/request IDs through all service boundaries (HTTP headers, message queues, etc.)46- Downstream services must inherit correlation IDs from upstream47- Use middleware or interceptors to automatically inject context into every log48- For async jobs, store and restore the original request context4950Log Levels — Use Them Correctly:5152- debug — Verbose details for local development, usually disabled in production53- info — Normal operations worth recording (user actions, job completions, deploys)54- warn — Something unexpected happened but the system handled it (retries, fallbacks)55- error — Something failed and likely needs human attention (exceptions, failed requests)5657Don't log errors for expected conditions (e.g., user enters wrong password)5859What to Log:6061- Request entry and exit points (with duration)62- State transitions (order created → paid → shipped)63- External service calls (with latency and response codes)64- Authentication and authorization events65- Background job starts, completions, and failures66- Retry attempts and circuit breaker state changes6768What NOT to Log:6970- Sensitive data (passwords, tokens, PII, credit card numbers)71- Logs inside tight loops (will generate millions of useless entries)72- Success cases that provide no debugging value73- Redundant information already captured by infrastructure (load balancer logs, etc.)7475Naming Conventions:7677- Be consistent across all services — agree on field names as a team78- Use snake_case for field names: user_id, not userId or user-id79- Use past-tense verbs for events: payment_completed, not complete_payment80- Prefix events by domain when helpful: auth.login_failed, billing.invoice_created8182Performance Considerations:8384- Use sampling for high-volume debug logs in production85- Avoid logging inside hot paths unless absolutely necessary86- Buffer and batch log writes to reduce I/O overhead87- Consider log levels that can be changed at runtime without redeploying8889During Incidents:9091- Your logs should answer: Who was affected? What failed? When? Why?92- If you can't answer these within 5 minutes of querying, your logging strategy needs work93- Post-incident: add the logs you wished you had