diff options
author | George Hazan <ghazan@miranda.im> | 2018-08-25 20:08:22 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-08-25 20:08:22 +0300 |
commit | 1f711c47cd7b4388b2b8af1cd60893e843ac617f (patch) | |
tree | d25cbecb7c297d72b5dc5df45324f4534411ae9c /plugins | |
parent | 57a668940e62889c035cf0eafd7926e538cbff4d (diff) |
limdbx error logging disabled till the problem with GC will be solved
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Dbx_mdbx/src/dbintf.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Dbx_mdbx/src/dbintf.cpp b/plugins/Dbx_mdbx/src/dbintf.cpp index 4883c936d0..efe6ba1559 100644 --- a/plugins/Dbx_mdbx/src/dbintf.cpp +++ b/plugins/Dbx_mdbx/src/dbintf.cpp @@ -237,11 +237,11 @@ STDMETHODIMP_(void) CDbxMDBX::SetCacheSafetyMode(BOOL bIsSet) static void assert_func(const MDBX_env*, const char *msg, const char *function, unsigned line)
{
- Netlib_Logf(nullptr, "MDBX: assertion failed (%s, %d): %s", function, line, msg);
+/* Netlib_Logf(nullptr, "MDBX: assertion failed (%s, %d): %s", function, line, msg);
#if defined(_DEBUG)
_wassert(_A2T(msg), _A2T(function), line);
- #endif
+ #endif */
}
int CDbxMDBX::Map()
|