Skip to content

Commit

Permalink
Merge branch 'master' into stable-3.5
Browse files Browse the repository at this point in the history
* master:
  TaskTree: remove 'ERROR:' prefix from log statement
  TaskTree: fix errorprone warning about Flogger

Most development has happened in the stable-3.5 branch, but master has a
couple commits missing from there. Merge them in before creating new
stable branches based on stable-3.5.

Change-Id: I0698db5f5cdadb5b208fdac09e0a4ffece20b2d0
  • Loading branch information
Nasser Grainawi committed Feb 1, 2024
2 parents cf73e1e + a889f29 commit c5bc4e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ task.config.new Task(tasksFactory, changeData.getId().toString())),
return;
}
} catch (StorageException e) {
log.atSevere().withCause(e).log("ERROR: running changes query: %s", namesFactory.changes);
log.atSevere().withCause(e).log("Running changes query '%s' failed", namesFactory.changes);
} catch (QueryParseException | ConfigInvalidException e) {
}
addInvalidNode();
Expand Down

0 comments on commit c5bc4e7

Please sign in to comment.