diff --git a/SoObjects/SOGo/SOGoCache.m b/SoObjects/SOGo/SOGoCache.m index 457de6d83..805b12650 100644 --- a/SoObjects/SOGo/SOGoCache.m +++ b/SoObjects/SOGo/SOGoCache.m @@ -267,6 +267,7 @@ static memcached_st *handle = NULL; NSData *keyData, *valueData; memcached_return error; + // [self logWithFormat: @"setValue: '%@' forKey: '%@'", value, key]; if (handle) { keyData = [key dataUsingEncoding: NSUTF8StringEncoding]; @@ -328,6 +329,8 @@ static memcached_st *handle = NULL; @" '%@' while no handle exists", key]; } + // [self logWithFormat: @"valueForKey: '%@' -> '%@'", key, valueString]; + return valueString; }