diff --git a/server/src/util.rs b/server/src/util.rs index 151e20a..7aa90fe 100644 --- a/server/src/util.rs +++ b/server/src/util.rs @@ -14,3 +14,7 @@ pub fn notice_println(msg: impl Into) { pub fn warn_println(msg: impl Into) { eprintln!("{}", msg.into().yellow().bold()); } + +pub fn err_println(msg: impl Into) { + eprintln!("{}", msg.into().red().bold()); +}