Changeset 136 for trunk/IPs/systemC/processor/Morpheo/Common
- Timestamp:
- Oct 20, 2009, 8:52:15 PM (15 years ago)
- Location:
- trunk/IPs/systemC/processor/Morpheo/Common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IPs/systemC/processor/Morpheo/Common/include/ErrorMorpheo.h
r117 r136 34 34 { 35 35 #ifdef DEBUG 36 _msg = toString(_(" \n%s at line %d, in file %s"),MSG_ERROR,line,file.c_str());37 _msg = toString(_(" \n%s <%s> %s"),MSG_ERROR,funcname.c_str(),msg.c_str());36 _msg = toString(_("%s at line %d, in file %s"),MSG_ERROR,line,file.c_str()); 37 _msg = toString(_("%s <%s> %s"),MSG_ERROR,funcname.c_str(),msg.c_str()); 38 38 #else 39 _msg = toString(_(" \n%s %s"),MSG_ERROR,msg.c_str());39 _msg = toString(_("%s %s"),MSG_ERROR,msg.c_str()); 40 40 #endif 41 msg("%s",_msg.c_str()); 41 42 } 42 43 public : ~ErrorMorpheo (void) throw() {} -
trunk/IPs/systemC/processor/Morpheo/Common/src/Message.cpp
r134 r136 39 39 log_file_generate = have_file; 40 40 41 #if 0 41 42 if (have_file) 42 43 { … … 63 64 } 64 65 else 66 #endif 65 67 { 66 68 log_stream = NULL;
Note: See TracChangeset
for help on using the changeset viewer.