Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add log timestamp when processing #161

Merged
merged 2 commits into from
Oct 30, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/isolate/logger.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import json
import os
from datetime import datetime, timezone
from typing import Dict

from isolate.logs import LogLevel, LogSource
Expand All @@ -16,6 +17,9 @@ def __init__(self, log_labels: Dict[str, str]):

def log(self, level: LogLevel, message: str, source: LogSource) -> None:
record = {
# Set the timestamp from source so we can be sure no buffering or
# latency is affecting the timestamp.
"timestamp": datetime.now(tz=timezone.utc).isoformat(),
"isolate_source": source.name,
"level": level.name,
"message": message,
Expand Down
Loading