about summary refs log tree commit diff
path: root/converter/other/pamtosvg/logreport.c
blob: 63568b962b8e0fe8c548cf37543b661baa1995ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* 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);
}