about summary refs log tree commit diff
path: root/converter/other/pamtosvg/logreport.c
blob: 7d726584013fd235f415d815e43265e4261ae950 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* logreport.c: showing information to the user. */

#include "logreport.h"
#include "message.h"

/* Says whether to output detailed progress reports, i.e., all the data
   on the fitting, as we run.  (-log)  */
FILE *log_file = NULL;


void
flush_log_output (void)
{
  if (log_file)
    fflush (log_file);
}