Commit 6d7c1cb7 authored by Ad Schellevis's avatar Ad Schellevis

send exception to syslog for Google drive download

parent e287db60
......@@ -355,6 +355,7 @@ function backup_to_google_drive()
$target_filename = "config-" . time() . ".xml";
if (count($configfiles) > 1) {
// compare last backup with current, only save new
try {
$bck_data_enc_in = $client->download($configfiles[array_keys($configfiles)[0]]);
$bck_data_enc = "";
tagfile_deformat($bck_data_enc_in, $bck_data_enc, "config.xml");
......@@ -362,6 +363,9 @@ function backup_to_google_drive()
if ($bck_data == $confdata) {
$target_filename = null;
}
} catch (Exception $e) {
log_error("unable to download " . $configfiles[array_keys($configfiles)[0]]->description . " from Google Drive (" . $e . ")");
}
}
if (!is_null($target_filename)) {
log_error("backup configuration as " . $target_filename);
......
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