Revert "aggressive error logging during startup"

This reverts commit 59295f9cae.
This commit is contained in:
Alexey Shpakovsky 2021-05-28 23:19:52 +02:00
parent 245cef430c
commit a54c51f954
No known key found for this signature in database
GPG Key ID: 5797A726A2A4230A
1 changed files with 4 additions and 7 deletions

View File

@ -69,7 +69,7 @@ class abook_carddav extends addressbook_backend {
$this->listing = $param['listing'];
}
return $this->open(true);
$this->open(true);
}
else {
return $this->set_error('Invalid argument to constructor');
@ -87,15 +87,12 @@ class abook_carddav extends addressbook_backend {
$discover = new Discovery();
$abooks = $discover->discoverAddressbooks($this->account);
} catch (\Exception $e) {
echo "Error during addressbook discovery: " . $e->getMessage();
return $this->set_error(_("Error during addressbook discovery: ") . $e->getMessage());
// exit(1);
// $log->error("!!! Error during addressbook discovery: " . $e->getMessage());
exit(1);
}
if (count($abooks) <= 0) {
// $log->warning("Cannot proceed because no addressbooks were found - exiting");
echo "Cannot proceed because no addressbooks were found - exiting";
return $this->set_error(_("Cannot proceed because no addressbooks were found - exiting"));
// exit(0);
exit(0);
}
//////////////////////////////////////////////////////////
// THE FOLLOWING SHOWS HOW TO PERFORM A SYNCHRONIZATION //