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/ElementResults/PentaP1ElementResult.cpp

    r12493 r12511  
    5050void PentaP1ElementResult::DeepEcho(void){
    5151
    52         printf("PentaP1ElementResult:\n");
    53         printf("   enum: %i (%s)\n",this->enum_type,EnumToStringx(this->enum_type));
    54         printf("   values: [%g %g %g %g %g %g]\n",this->values[0],this->values[1],this->values[2],this->values[3],this->values[4],this->values[5]);
    55         printf("   step: %i\n",this->step);
    56         printf("   time: %g\n",this->time);
     52        _printLine_("PentaP1ElementResult:");
     53        _printLine_("   enum: " << this->enum_type << " (" << EnumToStringx(this->enum_type) << ")");
     54        _printLine_("   values: [" << this->values[0] << " " << this->values[1] << " " << this->values[2] << " " << this->values[3] << " " << this->values[4] << " " << this->values[5] << "]");
     55        _printLine_("   step: " << this->step);
     56        _printLine_("   time: " << this->time);
    5757
    5858}
Note: See TracChangeset for help on using the changeset viewer.