Skip to content

Commit

Permalink
refactor: clean up Git commit output
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDevMinerTV committed Apr 30, 2023
1 parent 6c1b354 commit 7c9e700
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/serial/serialcommands.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@ namespace SerialCommands {

if (parser->equalCmdParam(1, "INFO")) {
printState();
logger.info("GIT commit: %s", GIT_REV); // we dont want to print that on every update

// We don't want to print this on every timed state output
logger.info("Git commit: %s", GIT_REV);
}

if (parser->equalCmdParam(1, "CONFIG")) {
Expand Down

0 comments on commit 7c9e700

Please sign in to comment.