diff --git a/src/debug/console.rs b/src/debug/console.rs index a1ceef4..a44529f 100644 --- a/src/debug/console.rs +++ b/src/debug/console.rs @@ -47,8 +47,10 @@ pub struct ConsoleLog(Vec, usize); impl ConsoleLog { fn new() -> Self { Self( - vec![ConsoleEvent::Output(String::from( - "Welcome to the dev console :3\n (i should probably put some proper info into this some time)", + vec![ConsoleEvent::Output(format!( + "Running {} ({})\nMeow!! :3", + env!("CARGO_PKG_NAME"), + env!("CARGO_PKG_VERSION") ))], 1, )