From: Mikko Rasa Date: Thu, 10 May 2012 21:21:25 +0000 (+0300) Subject: Print out the commands at the appropriate verbosity level X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=494909ce0bf441138edcfe4605eb3c6c5f58c5eb;p=builder.git Print out the commands at the appropriate verbosity level --- diff --git a/source/builder.cpp b/source/builder.cpp index 21e5484..db46e5b 100644 --- a/source/builder.cpp +++ b/source/builder.cpp @@ -585,6 +585,8 @@ int Builder::do_build() Task *task = tgt->build(); if(task) { + if(verbose>=2) + IO::print("%s\n", task->get_command()); if(dry_run) { task->signal_finished.emit(true);