1 /* Begin include file salvager_severities.incl.pl1 BIM 831118 */
 2 /* format: style3 */
 3 
 4 declare   (
 5           SALV_CRASH          init (1),                     /** Something salvager-detected is life threatening. Should never happen */
 6           SALV_ANNOUNCE       init (2),                     /** Worthy of the console if online */
 7           SALV_LOG            init (4),                     /** worthy of the syserr log */
 8           SALV_DEBUG          init (5),                     /** just like 4, but dump the dir */
 9           SALV_JUST_LOG       init (6)                      /** barely worthy of the syserr log */
10           )                   fixed bin int static options (constant);
11 
12 /* End include file salvager_severities.incl.pl1 */