Skip to content

Commit

Permalink
EventLogger: Change default file extension to .log, not .csv.
Browse files Browse the repository at this point in the history
  • Loading branch information
CFSworks committed Nov 16, 2014
1 parent 8cbd07b commit 1b747c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/eventlogger/EventLogger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

static RoleConfigGroup el_config("eventlogger");
static ConfigVariable<std::string> bind_addr("bind", "0.0.0.0:7197", el_config);
static ConfigVariable<std::string> output_format("output", "events-%Y%m%d-%H%M%S.csv", el_config);
static ConfigVariable<std::string> output_format("output", "events-%Y%m%d-%H%M%S.log", el_config);
static ConfigVariable<std::string> rotate_interval("rotate_interval", "0", el_config);
static ValidAddressConstraint valid_bind_addr(bind_addr);

Expand Down

0 comments on commit 1b747c3

Please sign in to comment.