Changeset 6434

Show
Ignore:
Timestamp:
02/13/08 08:09:01 (5 years ago)
Author:
balister
Message:

Add more debug messages so we can see when clients query application settings.

Location:
ossie/trunk/ossie/framework
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • ossie/trunk/ossie/framework/Application_impl.cpp

    r6151 r6434  
    339339throw (CORBA::SystemException) 
    340340{ 
     341    DEBUG(8, Application, "Returning name : " << appName); 
    341342    return CORBA::string_dup(appName.c_str()); 
    342343} 
     
    346347throw (CORBA::SystemException) 
    347348{ 
     349    DEBUG(8, Application, "Returning identifier : " << id); 
    348350    return CORBA::string_dup(id.c_str()); 
    349351} 
     
    353355throw (CORBA::SystemException) 
    354356{ 
     357    DEBUG(8, Application, "Returning profile : " << sadProfile); 
    355358    return CORBA::string_dup(sadProfile.c_str()); 
    356359} 
  • ossie/trunk/ossie/framework/File_impl.cpp

    r3683 r6434  
    6868 
    6969    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."); 
    7171 
    7272    data = new CF::OctetSequence(length, count, buf, true);