Added minimal output to wrap generation
parent
20cf1da5a9
commit
9273c3d18c
|
@ -46,6 +46,10 @@ void FileWriter::emit(bool add_header, bool force_overwrite) const {
|
||||||
ofs << new_contents;
|
ofs << new_contents;
|
||||||
ofs.close();
|
ofs.close();
|
||||||
if (verbose_) cerr << " ...complete" << endl;
|
if (verbose_) cerr << " ...complete" << endl;
|
||||||
|
|
||||||
|
// Add small message whenever writing a new file and not running in full verbose mode
|
||||||
|
if (!verbose_)
|
||||||
|
cout << "wrap: generating " << filename_ << endl;
|
||||||
} else {
|
} else {
|
||||||
if (verbose_) cerr << " ...no update" << endl;
|
if (verbose_) cerr << " ...no update" << endl;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue