Skip to content

Commit

Permalink
fix: remove ascii formatting for logs
Browse files Browse the repository at this point in the history
  • Loading branch information
zerj9 committed Jan 19, 2025
1 parent 900fe77 commit 3e43f90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gridwalk-backend/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use tracing::info;
#[tokio::main]
async fn main() -> Result<()> {
// Initialise tracing
tracing_subscriber::fmt::init();
tracing_subscriber::fmt().with_ansi(false).init();
// Load environment variables from .env file
dotenv().ok();

Expand Down

0 comments on commit 3e43f90

Please sign in to comment.