Ignore:
Timestamp:
11/29/15 22:19:52 (8 years ago)
Author:
Maciej Komosinski
Message:

Validation of genotypes additionally prints genotype name when there are any problems

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/common/loggers/loggers.h

    r378 r452  
    9191        };
    9292
    93         int getErrorCount()       { return errcount; }
    94         int getWarningCount()     { return warncount; }
    95         int getInfoCount()        { return infocount; }
    96         int getStoredCount()      { return storedcount; }
    97         int getErrorLevel()       { return maxlevel; }
    98         const string getMessages() { return msgs; }
     93        int getErrorCount() const   { return errcount; }
     94        int getWarningCount() const { return warncount; }
     95        int getInfoCount() const    { return infocount; }
     96        int getStoredCount() const  { return storedcount; }
     97        int getErrorLevel() const   { return maxlevel; }
     98        string getMessages() const  { return msgs; }
     99        string getCountSummary() const; ///< return the standard "... error(s), ... warning(s), ... message(s)" text (or empty string if count==0)
    99100
    100101        LoggerToMemory(int opts = 0, int minimal_level_to_store = LOG_ERROR) :LoggerBase(opts), minleveltostore(minimal_level_to_store)
Note: See TracChangeset for help on using the changeset viewer.