1 |
/** @file |
/** @file |
2 |
* $Source: /home/cvsmanager/yoda/event/EventCounter.cpp,v $ |
* $Source: /home/cvsmanager/yoda/event/EventCounter.cpp,v $ |
3 |
* $Id: EventCounter.cpp,v 2.3 2004/12/09 08:47:42 kusanagi Exp $ |
* $Id: EventCounter.cpp,v 2.4 2004/12/16 17:32:46 kusanagi Exp $ |
4 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
5 |
* |
* |
6 |
* Implementation of the EventCounter class. |
* Implementation of the EventCounter class. |
129 |
oss << " Counter." << type->GetName() << " = " << (*counter); |
oss << " Counter." << type->GetName() << " = " << (*counter); |
130 |
logger->debug(oss.str().c_str()); |
logger->debug(oss.str().c_str()); |
131 |
} else { |
} else { |
132 |
throw NotExistingCounterException(type->GetName().c_str()); |
oss.str(""); |
133 |
|
oss << "\n No counter of type " << type->GetName().c_str(); |
134 |
|
throw NotExistingCounterException(oss.str().c_str()); |
135 |
} |
} |
136 |
} |
} |
137 |
|
|