diff options
author | John Wiegley <johnw@newartisans.com> | 2006-02-16 01:02:47 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 02:41:23 -0400 |
commit | a787adb1278121b8b691faca21b9dbaddc93ea92 (patch) | |
tree | f0fe2579b974262c09661b45845a12439a8ffa14 | |
parent | 0a8b36de3f32f360ffdfc7c6d2e07b11345c7a1d (diff) | |
download | fork-ledger-a787adb1278121b8b691faca21b9dbaddc93ea92.tar.gz fork-ledger-a787adb1278121b8b691faca21b9dbaddc93ea92.tar.bz2 fork-ledger-a787adb1278121b8b691faca21b9dbaddc93ea92.zip |
*** no comment ***
-rw-r--r-- | config.cc | 1 | ||||
-rw-r--r-- | textual.cc | 2 |
2 files changed, 0 insertions, 3 deletions
@@ -988,7 +988,6 @@ OPT_BEGIN(total_data, "J") { OPT_BEGIN(price_db, ":") { config->price_db = optarg; - std::cerr << "Setting --price_db=" << optarg << std::endl; } OPT_END(price_db); OPT_BEGIN(price_exp, "Z:") { @@ -608,8 +608,6 @@ unsigned int textual_parser_t::parse(std::istream& in, date_buffer[std::strlen(date_field)] = ' '; std::strcpy(&date_buffer[std::strlen(date_field) + 1], time_field); - std::cerr << "date_buffer = " << date_buffer << std::endl; - struct std::tm when; if (strptime(date_buffer, "%Y/%m/%d %H:%M:%S", &when)) { date = std::mktime(&when); |