Ignore:
Timestamp:
06/22/12 11:30:03 (13 years ago)
Author:
Mathieu Morlighem
Message:

replaced all printf to _printString and _printLine

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/objects/Loads/Pengrid.cpp

    r12493 r12511  
    109109void Pengrid::DeepEcho(void){
    110110
    111         printf("Pengrid:\n");
    112         printf("   id: %i\n",id);
    113         printf("   analysis_type: %s\n",EnumToStringx(analysis_type));
     111        _printLine_("Pengrid:");
     112        _printLine_("   id: " << id);
     113        _printLine_("   analysis_type: " << EnumToStringx(analysis_type));
    114114        hnode->DeepEcho();
    115115        helement->DeepEcho();
    116116        hmatpar->DeepEcho();
    117         printf("   active %i\n",this->active);
    118         printf("   zigzag_counter %i\n",this->zigzag_counter);
    119         printf("   parameters\n");
     117        _printLine_("   active " << this->active);
     118        _printLine_("   zigzag_counter " << this->zigzag_counter);
     119        _printLine_("   parameters");
    120120        parameters->DeepEcho();
    121         printf("   inputs\n");
     121        _printLine_("   inputs");
    122122        inputs->DeepEcho();
    123123}
Note: See TracChangeset for help on using the changeset viewer.