Commit 3d7b775b authored by Sebastian Kummer's avatar Sebastian Kummer

ZP-565 Added folderid to the output of found changes. Released under the

Affero GNU General Public License (AGPL) version 3.
parent 2f0206ed
...@@ -234,7 +234,7 @@ class ExportChangesICS implements IExportChanges{ ...@@ -234,7 +234,7 @@ class ExportChangesICS implements IExportChanges{
$changes = mapi_exportchanges_getchangecount($this->exporter); $changes = mapi_exportchanges_getchangecount($this->exporter);
if($changes || !($this->flags & BACKEND_DISCARD_DATA)) if($changes || !($this->flags & BACKEND_DISCARD_DATA))
ZLog::Write(LOGLEVEL_DEBUG, sprintf("ExportChangesICS->InitializeExporter() successfully. %d changes ready to sync.", $changes)); ZLog::Write(LOGLEVEL_DEBUG, sprintf("ExportChangesICS->InitializeExporter() successfully. %d changes ready to sync for '%s'.", $changes, ($this->folderid)?bin2hex($this->folderid) : 'hierarchy'));
return $ret; return $ret;
} }
......
...@@ -110,7 +110,7 @@ class ExportChangesDiff extends DiffState implements IExportChanges{ ...@@ -110,7 +110,7 @@ class ExportChangesDiff extends DiffState implements IExportChanges{
$this->changes = $this->getDiffTo($folderlist); $this->changes = $this->getDiffTo($folderlist);
} }
ZLog::Write(LOGLEVEL_INFO, sprintf("ExportChangesDiff->InitializeExporter(): Found '%d' changes", count($this->changes) )); ZLog::Write(LOGLEVEL_INFO, sprintf("ExportChangesDiff->InitializeExporter(): Found '%d' changes for '%s'", count($this->changes), ($this->folderid)?$this->folderid : 'hierarchy' ));
} }
/** /**
......
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