]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/src/httperror.cpp
Se agrega XML para otros items (no todos ya implementados en el cliente).
[z.facultad/75.42/plaqui.git] / Server / src / httperror.cpp
index b00ded58f778bfd7de779ab31323455ab9d056ec..b833ad1377084e7215750744c56e9b985e011217 100644 (file)
@@ -38,14 +38,16 @@ namespace Server {
 
 HTTPError::~HTTPError(void) throw() {
 #ifdef DEBUG
-       cerr << __FILE__ << ": destructor." << endl;
+       cerr << __FILE__ << "(" << __LINE__ << ")"
+               << ": destructor." << endl;
 #endif // DEBUG
 }
 
 HTTPError::HTTPError(unsigned code, const std::string& desc) throw():
                runtime_error(desc), code(code) {
 #ifdef DEBUG
-       cerr << __FILE__ << ": code = " << code << " | desc = " << desc << endl;
+       cerr << __FILE__ << "(" << __LINE__ << ")"
+               << ": code = " << code << " | desc = " << desc << endl;
 #endif // DEBUG
 }