Ignore:
Timestamp:
12/11/06 11:43:32 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mbase
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbase/MParContainer.cc

    r7887 r8218  
    572572    {
    573573        *fLog << err;
    574         *fLog << dbginf << GetDescriptor() << " - Cannot create new instance of class '" << name << "': ";
    575         *fLog << " - Class " << cls->GetName() << " doesn't inherit from " << base << endl;
     574        *fLog << dbginf << GetDescriptor() << "Cannot create new instance of class '" << name << "': " << endl;
     575        *fLog << "Class " << cls->GetName() << " doesn't inherit from " << base << endl;
    576576        return NULL;
    577577    }
     
    584584    {
    585585        *fLog << err;
    586         *fLog << dbginf << GetDescriptor() << " - Cannot create new instance of class '" << name << "': ";
     586        *fLog << dbginf << GetDescriptor() << " - Cannot create new instance of class '" << name << "': " << endl;
    587587        *fLog << " - Class " << cls->GetName() << " has no default constructor." << endl;
    588588        *fLog << " - An abstract member functions of a base class is not overwritten." << endl;
  • trunk/MagicSoft/Mars/mbase/MParList.cc

    r7808 r8218  
    594594    if (!cls->InheritsFrom(MParContainer::Class()))
    595595    {
    596         *fLog << " - Class doesn't inherit from MParContainer." << endl;
     596        *fLog << err << dbginf << "Cannot create new instance of class '" << cname << "': " << endl;
     597        *fLog << "Class doesn't inherit from MParContainer." << endl;
    597598        return NULL;
    598599    }
     
    604605    if (!pcont)
    605606    {
     607        *fLog << err << dbginf << "Cannot create new instance of class '" << cname << "': " << endl;
    606608        *fLog << " - Class has no default constructor." << endl;
    607609        *fLog << " - An abstract member functions of a base class is not overwritten." << endl;
Note: See TracChangeset for help on using the changeset viewer.