fix mistake in ?LOG_WARN
Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/e71cf049 Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/e71cf049 Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/e71cf049 Branch: refs/heads/1569-feature-low-disk-space-warn Commit: e71cf0499788553f457275558aaf3658fd74fe81 Parents: 5abc82b Author: Randall Leeds <[email protected]> Authored: Sat Jan 26 10:33:15 2013 -0800 Committer: Randall Leeds <[email protected]> Committed: Sat Jan 26 10:33:15 2013 -0800 ---------------------------------------------------------------------- src/couchdb/couch_db.hrl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/e71cf049/src/couchdb/couch_db.hrl ---------------------------------------------------------------------- diff --git a/src/couchdb/couch_db.hrl b/src/couchdb/couch_db.hrl index eb34ed5..42f10ac 100644 --- a/src/couchdb/couch_db.hrl +++ b/src/couchdb/couch_db.hrl @@ -53,7 +53,7 @@ -define(LOG_WARN(Format, Args), case couch_log:warn_on(?MODULE) of true -> - couch_log:info(Format, Args); + couch_log:warn(Format, Args); false -> ok end).
