Fix error level

This commit is contained in:
Laurent Destailleur 2019-07-29 01:13:49 +02:00
parent 9ca4d65965
commit 3112f2b1c5

View File

@ -459,7 +459,7 @@ if ($action == 'charge' && ! empty($conf->stripe->enabled))
if (empty($customer))
{
$error++;
dol_syslog('Failed to get/create stripe customer for thirdparty id = '.$thirdparty_id.' and servicestatus = '.$servicestatus.': '.$stripe->error, LOG_ERROR, 0, '_stripe');
dol_syslog('Failed to get/create stripe customer for thirdparty id = '.$thirdparty_id.' and servicestatus = '.$servicestatus.': '.$stripe->error, LOG_ERR, 0, '_stripe');
setEventMessages('Failed to get/create stripe customer for thirdparty id = '.$thirdparty_id.' and servicestatus = '.$servicestatus.': '.$stripe->error, null, 'errors');
}