Changeset 3300


Ignore:
Timestamp:
2002-07-30T14:46:00+12:00 (22 years ago)
Author:
sjboddie
Message:

Added error messages in a couple of places in collectoraction

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/recpt/collectoraction.cpp

    r3212 r3300  
    357357    }
    358358
    359     argdb *args_on_disk = new argdb(filename_cat(gsdlhome, "tmp", args["bc1tmp"], "argdb.db"));
     359    text_t argfile = filename_cat(gsdlhome, "tmp", args["bc1tmp"], "argdb.db");
     360    argdb *args_on_disk = new argdb(argfile);
    360361    if (!args_on_disk->update_args(saved_args)) {
    361362      // error
    362 
     363      logout << "collectoraction: argdb::update_args failed (" << argfile << ")\n";
    363364    }
    364365
     
    367368    if (!args_on_disk->get_args(saved_args)) {
    368369      // error
    369 
     370      logout << "collectoraction: argdb::get_args failed (" << argfile << ")\n";
    370371    }
    371372    delete args_on_disk;
Note: See TracChangeset for help on using the changeset viewer.