Merge pull request #342 from nextcloud/misc/noid/details-on-fail-to-async

Provide more details in logs on fail to async
pull/348/head
Julius Härtl 2019-01-17 15:37:46 +01:00 zatwierdzone przez GitHub
commit 8e75e9a8ba
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -238,9 +238,9 @@ class CurlService {
$this->request($request);
} catch (Exception $e) {
$this->miscService->log(
'Cannot initiate AsyncWithToken ' . json_encode($token) . ' ' . json_encode($e), 1
'Cannot initiate AsyncWithToken ' . json_encode($token) . ' (' . get_class($e)
. ' - ' . json_encode($e) . ')', 1
);
}
}