Skip to content

Commit

Permalink
lib: log cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
and3rson committed Feb 7, 2024
1 parent 357eb4d commit b72d2c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/lilka/src/lilka/serial.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ void serial_log(const char *format, ...) {
va_start(args, format);
vsnprintf(buffer, sizeof(buffer), format, args);
va_end(args);
Serial.print("[lilka] ");
Serial.print("lilka: ");
Serial.println(buffer);
}

Expand Down

0 comments on commit b72d2c8

Please sign in to comment.