From 16a0a104c3fd4f3ba6d8de265aa180677968ee8a Mon Sep 17 00:00:00 2001 From: Christian Schmitt Date: Thu, 12 Apr 2012 23:45:47 +0200 Subject: [PATCH] Some output cosmetics --- src/Airports/GenAirports850/main.cxx | 2 +- src/Lib/Output/output.cxx | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Airports/GenAirports850/main.cxx b/src/Airports/GenAirports850/main.cxx index 0b3f782d..38b3f218 100644 --- a/src/Airports/GenAirports850/main.cxx +++ b/src/Airports/GenAirports850/main.cxx @@ -300,7 +300,7 @@ int main(int argc, char **argv) } // make work directory - SG_LOG(SG_GENERAL, SG_INFO, "Creating airportarea directory"); + SG_LOG(SG_GENERAL, SG_INFO, "Creating AirportArea directory"); string airportareadir=work_dir+"/AirportArea"; SGPath sgp( airportareadir ); diff --git a/src/Lib/Output/output.cxx b/src/Lib/Output/output.cxx index bef2b0b0..a614eec0 100644 --- a/src/Lib/Output/output.cxx +++ b/src/Lib/Output/output.cxx @@ -76,7 +76,7 @@ void write_index( const string& base, const SGBucket& b, const string& name ) string file = dir + "/" + b.gen_index_str() + ".ind"; // string file = dir + "/" + name; - cout << "Output file = " << file << endl; + cout << "Writing object to " << file << endl; FILE *fp; if ( (fp = fopen( file.c_str(), "a" )) == NULL ) { @@ -102,7 +102,7 @@ void write_index_shared( const string &base, const SGBucket &b, string file = dir + "/" + b.gen_index_str() + ".ind"; // string file = dir + "/" + name; - cout << "Output file = " << file << endl; + cout << "Writing shared object to " << file << endl; FILE *fp; if ( (fp = fopen( file.c_str(), "a" )) == NULL ) { @@ -126,7 +126,7 @@ void write_object_sign( const string &base, const SGBucket &b, string file = dir + "/" + b.gen_index_str() + ".ind"; // string file = dir + "/" + name; - cout << "Output file = " << file << endl; + cout << "Writing sign to " << file << endl; FILE *fp; if ( (fp = fopen( file.c_str(), "a" )) == NULL ) { @@ -156,7 +156,7 @@ void write_boundary( const string& base, const SGBucket& b, file += "."; file += poly_index; - cout << "Output file = " << file << endl; + cout << "Writing boundary to " << file << endl; FILE *fp; if ( (fp = fopen( file.c_str(), "w" )) == NULL ) {