macro_rules! eprintln { ($($args:tt)*) => { ... }; }
This macro works the same as the eprintln! from the standard library.
eprintln!
console_web::eprintln!("The number 42 is {}", 42);