Show
Ignore:
Timestamp:
04/11/10 22:04:56 (14 years ago)
Author:
smidl
Message:

correction of loggers

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/base/bdmbase.cpp

    r896 r899  
    206206        upsize = rv_up._dsize(); 
    207207        v2v_up = rv.dataind ( rv_up ); 
    208         bdm_assert_debug ( v2v_up.length() == downsize, "rv is not fully in rv_up" ); 
     208        bdm_assert_debug ( v2v_up.length() == downsize, string("rv (" + rv.to_string() + ") is not fully in rv_up(" + rv_up.to_string()) ); 
    209209} 
    210210 
     
    430430        if ( rv._dsize() > 0 ) { 
    431431                id = entries.length(); 
    432                 names = concat ( names, prefix ); // diff 
    433                 if( name.length() > 0 ) 
    434                 { 
    435                         concat( names, separator ); 
    436                         concat( names, name ); 
     432                if( name.length() > 0 ) { 
     433                        names = concat ( names, prefix + separator + name); // diff 
     434                } else { 
     435                        names = concat ( names, prefix ); // diff 
    437436                } 
    438437                entries.set_length ( id + 1, true );