Commit ae8a9fd3 authored by Sebastian Kummer's avatar Sebastian Kummer

Merge pull request #287 in ZP/z-push from...

Merge pull request #287 in ZP/z-push from bugfix/ZP-956-warnings-about-unmet-condition-when to develop

* commit '04fb961e':
  ZP-956 Log message about unmatched id translation condition to DEBUG loglevel. Fixed whitespace.
parents 90faebf0 04fb961e
...@@ -155,7 +155,7 @@ class PHPWrapper { ...@@ -155,7 +155,7 @@ class PHPWrapper {
else $message->flags = $flags; else $message->flags = $flags;
$this->importer->ImportMessageChange($this->prefix.bin2hex($sourcekey), $message); $this->importer->ImportMessageChange($this->prefix.bin2hex($sourcekey), $message);
ZLog::Write(LOGLEVEL_DEBUG, sprintf("PHPWrapper->ImportMessageChange(): change for :'%s'", $this->prefix.bin2hex($sourcekey))); ZLog::Write(LOGLEVEL_DEBUG, sprintf("PHPWrapper->ImportMessageChange(): change for: '%s'", $this->prefix.bin2hex($sourcekey)));
// Tell MAPI it doesn't need to do anything itself, as we've done all the work already. // Tell MAPI it doesn't need to do anything itself, as we've done all the work already.
return SYNC_E_IGNORE; return SYNC_E_IGNORE;
......
...@@ -710,7 +710,7 @@ class ASDevice extends StateObject { ...@@ -710,7 +710,7 @@ class ASDevice extends StateObject {
$this->backend2folderidCache[$backendid] = $newHash; $this->backend2folderidCache[$backendid] = $newHash;
return $newHash; return $newHash;
} }
ZLog::Write(LOGLEVEL_WARN, sprintf("ASDevice->GetFolderIdForBackendId(): no valid condition found for determining folderid for backendid '%s'. Returning as is!", Utils::PrintAsString($backendid))); ZLog::Write(LOGLEVEL_DEBUG, sprintf("ASDevice->GetFolderIdForBackendId(): no valid condition found for determining folderid for backendid '%s'. Returning as is!", Utils::PrintAsString($backendid)));
return $backendid; return $backendid;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment