mirror of
https://github.com/imjasonh/krust
synced 2026-07-08 06:45:32 +00:00
18 lines
410 B
Text
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'
|