Skip to content

Commit

Permalink
Removed \0 from tracing layer
Browse files Browse the repository at this point in the history
Signed-off-by: Xi Yu Oh <[email protected]>
  • Loading branch information
xiyuoh committed May 16, 2023
1 parent dc1c82d commit 3ccac6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rmf_site_editor/src/widgets/console.rs
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ where

// Default category
let mut category = LogCategory::Status;
let message = format!("{}\0", recorder);
let message = format!("{}", recorder);

// Check if this is a Bevy or RMF Site log
if event.metadata().target().contains("bevy") {
Expand Down

0 comments on commit 3ccac6d

Please sign in to comment.