Changeset 6434
- Timestamp:
- 02/13/08 08:09:01 (5 years ago)
- Location:
- ossie/trunk/ossie/framework
- Files:
-
- 2 modified
-
Application_impl.cpp (modified) (3 diffs)
-
File_impl.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ossie/trunk/ossie/framework/Application_impl.cpp
r6151 r6434 339 339 throw (CORBA::SystemException) 340 340 { 341 DEBUG(8, Application, "Returning name : " << appName); 341 342 return CORBA::string_dup(appName.c_str()); 342 343 } … … 346 347 throw (CORBA::SystemException) 347 348 { 349 DEBUG(8, Application, "Returning identifier : " << id); 348 350 return CORBA::string_dup(id.c_str()); 349 351 } … … 353 355 throw (CORBA::SystemException) 354 356 { 357 DEBUG(8, Application, "Returning profile : " << sadProfile); 355 358 return CORBA::string_dup(sadProfile.c_str()); 356 359 } -
ossie/trunk/ossie/framework/File_impl.cpp
r3683 r6434 68 68 69 69 unsigned int count = f.readsome((char *)buf, length); 70 DEBUG( 7, File, "Read " << f.gcount() << " bytes from file.");70 DEBUG(10, File, "Read " << f.gcount() << " bytes from file."); 71 71 72 72 data = new CF::OctetSequence(length, count, buf, true);