FACT++  1.0
void dim_print_msg ( char *  msg,
int  severity 
)

Definition at line 180 of file utilities.c.

References dim_print_date_time().

Referenced by error_handler().

181 {
183  switch(severity)
184  {
185  case 0: printf("(INFO) ");
186  break;
187  case 1: printf("(WARNING) ");
188  break;
189  case 2: printf("(ERROR) ");
190  break;
191  case 3: printf("(FATAL) ");
192  break;
193  }
194  printf("%s\n",msg);
195  fflush(stdout);
196 }
void dim_print_date_time()
Definition: utilities.c:134

+ Here is the call graph for this function:

+ Here is the caller graph for this function: