Changing empty fields to also use "-" for ascii logging.

This commit is contained in:
Seth Hall 2011-06-07 23:05:35 -04:00
parent 8a0e14f0dc
commit e0174f583e

View file

@ -10,7 +10,7 @@ export {
## If true, include a header line with column names. ## If true, include a header line with column names.
const include_header = T &redef; const include_header = T &redef;
# Prefix for the header line if included. ## Prefix for the header line if included.
const header_prefix = "# " &redef; const header_prefix = "# " &redef;
## Separator between fields. ## Separator between fields.
@ -20,7 +20,7 @@ export {
const set_separator = "," &redef; const set_separator = "," &redef;
## String to use for empty fields. ## String to use for empty fields.
const empty_field = "" &redef; const empty_field = "-" &redef;
## String to use for an unset &optional field. ## String to use for an unset &optional field.
const unset_field = "-" &redef; const unset_field = "-" &redef;