Skip to content

Commit

Permalink
Clarify which service we query in debug logs.
Browse files Browse the repository at this point in the history
  • Loading branch information
bittrance committed Jan 23, 2022
1 parent 0b98960 commit 933bfd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/source/appinsight.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ impl LogSource for AppInsights {
let debug = self.opts.debug;
let query = format!("{}", self.query);
if debug {
eprintln!("{}", query);
eprintln!("App Insights query: {}", query);
}
let body = QueryBody {
query,
Expand Down
2 changes: 1 addition & 1 deletion src/source/opsinsight.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ impl LogSource for OpsLogs {
let debug = self.opts.debug;
let query = format!("{}", self.query);
if debug {
eprintln!("{}", query);
eprintln!("Log Analytics query: {}", query);
}
let body = QueryBody {
query,
Expand Down

0 comments on commit 933bfd6

Please sign in to comment.