get_class in log

Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
pull/342/head
Maxence Lange 2019-01-16 16:43:23 -01:00
rodzic 2247e2482c
commit 7ab0a7f334
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
);
}
}