Skip to content

Commit

Permalink
[db] downgrade WARN to DEBUG if watch not found
Browse files Browse the repository at this point in the history
  • Loading branch information
whatdoineed2do/Ray committed Nov 4, 2023
1 parent 4d9e048 commit a799d9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/db.c
Original file line number Diff line number Diff line change
Expand Up @@ -6391,7 +6391,7 @@ db_watch_get_byquery(struct watch_info *wi, char *query)
ret = db_blocking_step(stmt);
if (ret != SQLITE_ROW)
{
DPRINTF(E_WARN, L_DB, "Watch not found: '%s'\n", query);
DPRINTF(E_DBG, L_DB, "Watch not found: '%s'\n", query);

sqlite3_finalize(stmt);
sqlite3_free(query);
Expand Down

0 comments on commit a799d9b

Please sign in to comment.