[31m[1mERROR[0m[39m: 
  [31m×[0m `new_logger` is not a fully-qualified import path.
  [31m│[0m
  [31m│[0m     ╭─[[36;1;4msrc/lib.rs[0m:9:1]
  [31m│[0m  [2m 9[0m │     let mut bp = Blueprint::new();
  [31m│[0m  [2m10[0m │     bp.constructor(f!(new_logger), Lifecycle::Singleton);
  [31m│[0m     · [35;1m                   ───────┬──────[0m
  [31m│[0m     ·                           [35;1m╰── [35;1mThe relative import path was registered here[0m[0m
  [31m│[0m  [2m11[0m │     bp.route(GET, "/home", f!(crate::handler));
  [31m│[0m     ╰────
  [31m│[0m [36m  help: [0mIf it is a local import, the path must start with `crate::`.
  [31m│[0m         If it is an import from a dependency, the path must start with the
  [31m│[0m         dependency name (e.g. `dependency::`).