Skip to content
This repository has been archived by the owner on Jan 16, 2024. It is now read-only.

Commit

Permalink
Reduce log-level of "Offline-mode header not found"
Browse files Browse the repository at this point in the history
This particular log is not very useful for the average user.
Reduce the log-level to avoid possible confusion.

Related-to: TOR-2277

Signed-off-by: Jeremias Cordoba <jeremias.cordoba@toradex.com>
  • Loading branch information
jsrc27 committed Jun 2, 2022
1 parent f71cf36 commit d85fc03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/torizon_virtual_secondary/dockerofflineloader.cc
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ void DockerComposeFile::backwardTransform() {
if (compose_lines_.size()) {
const std::string first_line = compose_lines_.front();
if (! std::regex_match(first_line, offline_mode_header_re)) {
LOG_INFO << "Offline-mode header not found: skipping backward transform";
LOG_DEBUG << "Offline-mode header not found: skipping backward transform";
return;
}
}
Expand Down

0 comments on commit d85fc03

Please sign in to comment.