summaryrefslogtreecommitdiffstats
path: root/src/commands/build.rs
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2020-12-08 15:00:32 +0100
committerMatthias Beyer <mail@beyermatthias.de>2020-12-08 15:00:32 +0100
commit2c0c9b83d86fe8e14027f800e15e822d40118a91 (patch)
tree6b37ef8edef148da73bf21785e422424826ddc11 /src/commands/build.rs
parent3d08927a721854f52a2aa2743c645c8aecf5a32e (diff)
Change output to be always printed
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'src/commands/build.rs')
-rw-r--r--src/commands/build.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/build.rs b/src/commands/build.rs
index 60c61e7..23ff4a3 100644
--- a/src/commands/build.rs
+++ b/src/commands/build.rs
@@ -48,7 +48,7 @@ pub async fn build(matches: &ArgMatches,
let now = chrono::offset::Local::now().naive_local();
let submit_id = uuid::Uuid::new_v4();
- info!("Submit {}, started {}", submit_id, now);
+ println!("Submit {}, started {}", submit_id, now);
let shebang = Shebang::from({
matches.value_of("shebang")