Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix a compile error
fix a  compile error, whith compile flag  -D__CPP_REDIS_LOGGING_ENABLED
  • Loading branch information
sunwake authored Jul 9, 2020
commit b65ac14d4f506b619c5b8fc3fccf81519d455471
2 changes: 1 addition & 1 deletion sources/core/reply.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ namespace cpp_redis {
if (is_integer())
return optional_t<int64_t>(m_int_val);

__CPP_REDIS_LOG(1, "Reply is not an integer");
__CPP_REDIS_LOG(warn, "Reply is not an integer");
return {0};
}

Expand Down