1
0
Fork 0
mirror of https://github.com/imjasonh/krust synced 2026-07-08 06:45:32 +00:00
krust/tests/testdata/verbose_logging.txt

19 lines
410 B
Text
Raw Normal View History

# Test verbose logging with --verbose flag
-- Cargo.toml --
[package]
name = "test-app"
version = "0.1.0"
edition = "2021"
[dependencies]
-- src/main.rs --
fn main() {
println!("Hello, world!");
}
# Build with --verbose should show DEBUG logs
[linux] exec ./krust --verbose build --no-push --platform linux/amd64 .
[darwin] exec ./krust --verbose build --no-push --platform linux/amd64 .
stderr 'DEBUG'