diff options
author | Filipe David Borba Manana <fdmanana@apache.org> | 2011-08-31 19:09:05 +0000 |
---|---|---|
committer | Filipe David Borba Manana <fdmanana@apache.org> | 2011-08-31 19:09:05 +0000 |
commit | 25f208d526e3838e1721c3903a12af1051a29c94 (patch) | |
tree | 63a516b7dddfe6fa5153967efde629aa7f211c77 /src | |
parent | d87bcb83439ddd58ebb96abb4cabe911ae868eda (diff) |
Fix order of parameters in log message
git-svn-id: https://svn.apache.org/repos/asf/couchdb/branches/1.1.x@1163747 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r-- | src/couchdb/couch_rep.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/couchdb/couch_rep.erl b/src/couchdb/couch_rep.erl index a9c156e9..9d90fee3 100644 --- a/src/couchdb/couch_rep.erl +++ b/src/couchdb/couch_rep.erl @@ -542,7 +542,7 @@ filter_code(Filter, Props, UserCtx) -> DocErrorMsg = io_lib:format( "Couldn't open document `_design/~s` from source " "database `~s`: ~s", - [dbname(Source), DDocName, couch_util:to_binary(DocError)]), + [DDocName, dbname(Source), couch_util:to_binary(DocError)]), throw({error, iolist_to_binary(DocErrorMsg)}) end, Code = couch_util:get_nested_json_value( |