Skip to content

Commit

Permalink
add .log at the end of log files
Browse files Browse the repository at this point in the history
  • Loading branch information
eriktaubeneck committed Jul 31, 2024
1 parent 0bb24ad commit b412529
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sidecar/app/query/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def status_file_path(query_id: str) -> Path:

def log_file_path(query_id: str) -> Path:
settings = get_settings()
return settings.log_dir_path / Path(query_id)
return settings.log_dir_path / Path(f"{query_id}.log")


@dataclass
Expand Down

0 comments on commit b412529

Please sign in to comment.