Changes between Initial Version and Version 1 of Old/omf-4.4/NodeHandler/LogS


Ignore:
Timestamp:
Feb 27, 2006, 2:14:06 AM (18 years ago)
Author:
seskar
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Old/omf-4.4/NodeHandler/LogS

    v1 v1  
     1The nodehandler uses four different levels of logging messages:
     2
     3* '''DEBUG''':
     4Those are logging messages about various internal state changes which
     5are mainly useful for the developers of nodehandler or for more in-depth
     6analysis of what's going on. They should be of little use for the casual
     7experimenter
     8
     9* '''INFO''':
     10Those logging messages report state changes which we deemed useful to
     11report to the experimenter. An info message does NOT report anything
     12abnormal. Info messages, as the name implies inform the experimenter that
     13the experiment is progressing and should be considered POSITIVE feedback.
     14
     15* '''WARNING''':
     16Warning messages report abnormal behavior but it is still possible
     17for the nodehandler to proceed. It is left to the experimenter to decide if
     18it makes sense to proceed or if the experiment should be stopped. Warning
     19messages usually originate from the nodes. There are mechanisms which would
     20allow an experiment script to react to those messages and potentially take
     21corrective actions. Right now, those mechanisms aren't fully developed and
     22therefore not properly documented.
     23
     24* '''ERROR''':
     25Error messages report unexpected behaviors by the nodehandler or some
     26of its sub system. The progress of the experiment is undetermined. An error
     27message usually results from an unprocessed exception.
     28
     29In short DEBUG and INFO are logging normal progress and can be ignored, WARN
     30and ERROR report on abnormal behavior.
     31