Skip to content

Commit

Permalink
Update logfire/_internal/exporters/console.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dmontagu authored Jan 29, 2025
1 parent 786b0ab commit 0c53630
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions logfire/_internal/exporters/console.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,9 @@ def _details_parts(self, span: ReadableSpan, indent_str: str) -> TextParts:
log_level = NUMBER_TO_LEVEL.get(log_level_num)

if file_location or log_level:
parts: TextParts = [(indent_str, ''), ('│', 'blue'), (' ', '')]
parts: TextParts = [(indent_str, ''), ('│', 'blue')]
if file_location:
parts.append((file_location, 'cyan'))
parts.append((f' {file_location}', 'cyan'))
if log_level:
parts.append((f' {log_level}', ''))
return parts
Expand Down

0 comments on commit 0c53630

Please sign in to comment.