1
0
Fork 0
mirror of https://github.com/imjasonh/krust synced 2026-07-08 14:55:35 +00:00
krust/tests/testdata/verbose_logging.txt
Jason Hall e47442d04d successfully pushed to GAR
Signed-off-by: Jason Hall <jason@chainguard.dev>
2025-10-15 11:58:05 -04:00

18 lines
410 B
Text

# 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'