diff --git a/plugins/memcached/index.py b/plugins/memcached/index.py index a865f76a3..6c0663fae 100755 --- a/plugins/memcached/index.py +++ b/plugins/memcached/index.py @@ -9,6 +9,8 @@ sys.path.append(os.getcwd() + "/class/core") import public app_debug = False +if public.getOs() == 'darwin': + app_debug = True def getPluginName(): diff --git a/plugins/redis/index.py b/plugins/redis/index.py index 6e77e0ee6..b44548126 100755 --- a/plugins/redis/index.py +++ b/plugins/redis/index.py @@ -9,6 +9,8 @@ sys.path.append(os.getcwd() + "/class/core") import public app_debug = False +if public.getOs() == 'darwin': + app_debug = True def getPluginName():