Skip to content

Commit

Permalink
Update vector-logs filter fn usage
Browse files Browse the repository at this point in the history
  • Loading branch information
yaroliakh committed Sep 17, 2024
1 parent 12563b3 commit 546734d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions paasta_tools/cli/cmds/logs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1209,7 +1209,7 @@ def print_logs_by_time(
for line in reader.get_log_reader(
log_name=stream_name, start_datetime=start_time, end_datetime=end_time
):
if paasta_log_line_passes_filter(
if paasta_app_output_passes_filter(
line,
levels,
service,
Expand Down Expand Up @@ -1266,7 +1266,7 @@ async def tail_logs_from_nats() -> None:
msg = await sub.next_msg(timeout=None)
decoded_data = msg.data.decode("utf-8")

if paasta_log_line_passes_filter(
if paasta_app_output_passes_filter(
decoded_data,
levels,
service,
Expand Down

0 comments on commit 546734d

Please sign in to comment.