1 /* BEGIN INCLUDE FILE dm_log_sv_codes.incl.pl1 */
 2 
 3 /* format: ^indcom */
 4 
 5 /* DESCRIPTION:
 6    These are the severity codes used by the dms daemon when calling its logger.
 7    The severity is ranked thusly:
 8 
 9    severity log write situation
10    -------- --- ----- ---------
11           0 no  yes   standard output, query, etc.
12           1 yes yes   fatal error, terminate dms daemon.
13           2 yes yes   nonfatal error.
14           3 yes yes   informative message.
15           4 yes no    log information only.
16 */
17 
18 /* HISTORY:
19 
20 Written by M. Pandolf, 10/06/82.
21 Modified:
22 12/10/84 by R. Michael Tague: Rename and reformat description/history.
23 01/13/85 by Lee A. Newcomb:  Renamed to dm_log_sv_codes from
24             dm_daemon_sv_codes as the severity codes for the DM log are not
25             restrained to the DM Daemon's use.
26 01/24/85 by Lee A. Newcomb:  Fixed to say dm_log_sv_codes.incl.pl1 in the
27             BEGIN and END INCLUDE comments, instead of dm_daemon_sv_codes.==.
28 */
29 
30 /* format: style5 */
31 
32      dcl     (PRINT_SV, QUERY_SV)    fixed bin internal static
33                                      options (constant) init (0);
34      dcl     (CRASH_SV, FATAL_SV)    fixed bin internal static
35                                      options (constant) init (1);
36      dcl     ERROR_SV                fixed bin internal static
37                                      options (constant) init (2);
38      dcl     INFORM_SV               fixed bin internal static
39                                      options (constant) init (3);
40      dcl     LOG_SV                  fixed bin internal static
41                                      options (constant) init (4);
42 
43 /* END INCLUDE FILE dm_log_sv_codes.incl.pl1 */