a/src/DAF/CDAP/CDAPMsgLogEntry.cc b/src/DAF/CDAP/CDAPMsgLogEntry.cc
...
...
26
    this->requestedAt = 0;
26
    this->requestedAt = 0;
27
    this->respondedAt = 0;
27
    this->respondedAt = 0;
28
}
28
}
29
29
30
std::string CDAPMsgLogEntry::info() const {
30
std::string CDAPMsgLogEntry::info() const {
31
    std::stringstream os;
31
    std::ostringstream os;
32
    os << "" << this->getOpCode() << "status: " << this->getMessageStatusString()
32
    os << "" << this->getOpCode() << "status: " << this->getMessageStatusString()
33
       << "requested at: " << this->requestedAt
33
       << "requested at: " << this->requestedAt
34
       << "\tresponded at:" << this->respondedAt << endl;
34
       << "\tresponded at:" << this->respondedAt << endl;
35
    return os.str();
35
    return os.str();
36
}
36
}