Sep 19 22:46:04.481 INFO checking logging-0.1.0 against master#ff6422d7a392acfc8af28994d65af2bbaecea4f6 for pr-54346 Sep 19 22:46:04.481 INFO running: cargo +ff6422d7a392acfc8af28994d65af2bbaecea4f6-alt check --frozen --all --all-targets Sep 19 22:46:04.481 INFO running `"docker" "create" "-v" "/home/ec2-user/crater/./work/local/test-source/worker-1/pr-54346/master#ff6422d7a392acfc8af28994d65af2bbaecea4f6:/source:ro,Z" "-v" "/home/ec2-user/crater/./work/local/target-dirs/pr-54346/worker-1/master#ff6422d7a392acfc8af28994d65af2bbaecea4f6:/target:rw,Z" "-v" "/home/ec2-user/crater/./work/local/cargo-home:/cargo-home:ro,Z" "-v" "/home/ec2-user/crater/./work/local/rustup-home:/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "CMD=cargo +ff6422d7a392acfc8af28994d65af2bbaecea4f6-alt check --frozen --all --all-targets" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-m" "1536M" "crater"` Sep 19 22:46:04.588 INFO blam! 86060133146f4c519f166b8b67e0d54ca8b6c7d8d7eb8724c133cccece64b5a7 Sep 19 22:46:04.590 INFO running `"docker" "start" "-a" "86060133146f4c519f166b8b67e0d54ca8b6c7d8d7eb8724c133cccece64b5a7"` Sep 19 22:46:05.926 INFO kablam! usermod: no changes Sep 19 22:46:05.981 INFO kablam! Checking logging v0.1.0 (/source) Sep 19 22:46:07.299 INFO kablam! error[E0308]: mismatched types Sep 19 22:46:07.300 INFO kablam! --> tests/basics.rs:5:29 Sep 19 22:46:07.300 INFO kablam! | Sep 19 22:46:07.301 INFO kablam! 5 | let log1 = logging::get("main".to_owned()); Sep 19 22:46:07.301 INFO kablam! | ^^^^^^^^^^^^^^^^^ Sep 19 22:46:07.301 INFO kablam! | | Sep 19 22:46:07.302 INFO kablam! | expected &str, found struct `std::string::String` Sep 19 22:46:07.302 INFO kablam! | help: consider borrowing here: `&"main".to_owned()` Sep 19 22:46:07.302 INFO kablam! | Sep 19 22:46:07.303 INFO kablam! = note: expected type `&str` Sep 19 22:46:07.303 INFO kablam! found type `std::string::String` Sep 19 22:46:07.303 INFO kablam! Sep 19 22:46:07.304 INFO kablam! error[E0308]: mismatched types Sep 19 22:46:07.304 INFO kablam! --> tests/basics.rs:6:29 Sep 19 22:46:07.304 INFO kablam! | Sep 19 22:46:07.305 INFO kablam! 6 | let log2 = logging::get("main.logger".to_owned()); Sep 19 22:46:07.305 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^ Sep 19 22:46:07.305 INFO kablam! | | Sep 19 22:46:07.306 INFO kablam! | expected &str, found struct `std::string::String` Sep 19 22:46:07.306 INFO kablam! | help: consider borrowing here: `&"main.logger".to_owned()` Sep 19 22:46:07.306 INFO kablam! | Sep 19 22:46:07.307 INFO kablam! = note: expected type `&str` Sep 19 22:46:07.307 INFO kablam! found type `std::string::String` Sep 19 22:46:07.308 INFO kablam! Sep 19 22:46:07.321 INFO kablam! error[E0308]: mismatched types Sep 19 22:46:07.321 INFO kablam! --> tests/basics.rs:17:28 Sep 19 22:46:07.322 INFO kablam! | Sep 19 22:46:07.322 INFO kablam! 17 | let log = logging::get("main.console".to_owned()); Sep 19 22:46:07.322 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^ Sep 19 22:46:07.323 INFO kablam! | | Sep 19 22:46:07.323 INFO kablam! | expected &str, found struct `std::string::String` Sep 19 22:46:07.324 INFO kablam! | help: consider borrowing here: `&"main.console".to_owned()` Sep 19 22:46:07.324 INFO kablam! | Sep 19 22:46:07.325 INFO kablam! = note: expected type `&str` Sep 19 22:46:07.325 INFO kablam! found type `std::string::String` Sep 19 22:46:07.326 INFO kablam! Sep 19 22:46:07.326 INFO kablam! error[E0308]: mismatched types Sep 19 22:46:07.327 INFO kablam! --> tests/basics.rs:20:14 Sep 19 22:46:07.327 INFO kablam! | Sep 19 22:46:07.327 INFO kablam! 20 | log.info("yes mam".to_owned()); Sep 19 22:46:07.328 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^ Sep 19 22:46:07.328 INFO kablam! | | Sep 19 22:46:07.329 INFO kablam! | expected &str, found struct `std::string::String` Sep 19 22:46:07.329 INFO kablam! | help: consider borrowing here: `&"yes mam".to_owned()` Sep 19 22:46:07.330 INFO kablam! | Sep 19 22:46:07.330 INFO kablam! = note: expected type `&str` Sep 19 22:46:07.330 INFO kablam! found type `std::string::String` Sep 19 22:46:07.330 INFO kablam! Sep 19 22:46:07.331 INFO kablam! error[E0308]: mismatched types Sep 19 22:46:07.331 INFO kablam! --> tests/basics.rs:26:28 Sep 19 22:46:07.331 INFO kablam! | Sep 19 22:46:07.332 INFO kablam! 26 | let log = logging::get("main".to_owned()); Sep 19 22:46:07.332 INFO kablam! | ^^^^^^^^^^^^^^^^^ Sep 19 22:46:07.332 INFO kablam! | | Sep 19 22:46:07.333 INFO kablam! | expected &str, found struct `std::string::String` Sep 19 22:46:07.333 INFO kablam! | help: consider borrowing here: `&"main".to_owned()` Sep 19 22:46:07.333 INFO kablam! | Sep 19 22:46:07.334 INFO kablam! = note: expected type `&str` Sep 19 22:46:07.334 INFO kablam! found type `std::string::String` Sep 19 22:46:07.334 INFO kablam! Sep 19 22:46:07.335 INFO kablam! error[E0308]: mismatched types Sep 19 22:46:07.335 INFO kablam! --> tests/basics.rs:28:14 Sep 19 22:46:07.335 INFO kablam! | Sep 19 22:46:07.336 INFO kablam! 28 | log.info("start".to_owned()); Sep 19 22:46:07.336 INFO kablam! | ^^^^^^^^^^^^^^^^^^ Sep 19 22:46:07.336 INFO kablam! | | Sep 19 22:46:07.337 INFO kablam! | expected &str, found struct `std::string::String` Sep 19 22:46:07.337 INFO kablam! | help: consider borrowing here: `&"start".to_owned()` Sep 19 22:46:07.337 INFO kablam! | Sep 19 22:46:07.338 INFO kablam! = note: expected type `&str` Sep 19 22:46:07.338 INFO kablam! found type `std::string::String` Sep 19 22:46:07.338 INFO kablam! Sep 19 22:46:07.339 INFO kablam! error[E0308]: mismatched types Sep 19 22:46:07.339 INFO kablam! --> tests/basics.rs:34:23 Sep 19 22:46:07.340 INFO kablam! | Sep 19 22:46:07.341 INFO kablam! 34 | log.debug(format!("count: {}", i)); Sep 19 22:46:07.341 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^ Sep 19 22:46:07.342 INFO kablam! | | Sep 19 22:46:07.342 INFO kablam! | expected &str, found struct `std::string::String` Sep 19 22:46:07.343 INFO kablam! | help: consider borrowing here: `&format!("count: {}", i)` Sep 19 22:46:07.343 INFO kablam! | Sep 19 22:46:07.344 INFO kablam! = note: expected type `&str` Sep 19 22:46:07.344 INFO kablam! found type `std::string::String` Sep 19 22:46:07.345 INFO kablam! = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) Sep 19 22:46:07.345 INFO kablam! Sep 19 22:46:07.345 INFO kablam! error[E0308]: mismatched types Sep 19 22:46:07.345 INFO kablam! --> tests/basics.rs:38:14 Sep 19 22:46:07.346 INFO kablam! | Sep 19 22:46:07.346 INFO kablam! 38 | log.info("end".to_owned()); Sep 19 22:46:07.347 INFO kablam! | ^^^^^^^^^^^^^^^^ Sep 19 22:46:07.347 INFO kablam! | | Sep 19 22:46:07.347 INFO kablam! | expected &str, found struct `std::string::String` Sep 19 22:46:07.348 INFO kablam! | help: consider borrowing here: `&"end".to_owned()` Sep 19 22:46:07.348 INFO kablam! | Sep 19 22:46:07.348 INFO kablam! = note: expected type `&str` Sep 19 22:46:07.349 INFO kablam! found type `std::string::String` Sep 19 22:46:07.349 INFO kablam! Sep 19 22:46:07.349 INFO kablam! error: aborting due to 8 previous errors Sep 19 22:46:07.349 INFO kablam! Sep 19 22:46:07.350 INFO kablam! For more information about this error, try `rustc --explain E0308`. Sep 19 22:46:07.352 INFO kablam! error: Could not compile `logging`. Sep 19 22:46:07.352 INFO kablam! Sep 19 22:46:07.352 INFO kablam! To learn more, run the command again with --verbose. Sep 19 22:46:07.354 INFO kablam! su: No module specific data is present Sep 19 22:46:08.095 INFO running `"docker" "rm" "-f" "86060133146f4c519f166b8b67e0d54ca8b6c7d8d7eb8724c133cccece64b5a7"` Sep 19 22:46:08.209 INFO blam! 86060133146f4c519f166b8b67e0d54ca8b6c7d8d7eb8724c133cccece64b5a7