diff options
Diffstat (limited to 'src/couchdb/couch_log.erl')
-rw-r--r-- | src/couchdb/couch_log.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/couchdb/couch_log.erl b/src/couchdb/couch_log.erl index 14c262d0..b5507bb6 100644 --- a/src/couchdb/couch_log.erl +++ b/src/couchdb/couch_log.erl @@ -43,7 +43,7 @@ stop() -> init([]) -> % read config and register for configuration changes - + % just stop if one of the config settings change. couch_server_sup % will restart us and then we will pick up the new settings. ok = couch_config:register( @@ -52,7 +52,7 @@ init([]) -> ("log", "level") -> ?MODULE:stop() end), - + Filename = couch_config:get("log", "file", "couchdb.log"), Level = couch_config:get("log", "level", "info"), |