mirror of
https://github.com/friendica/friendica
synced 2024-11-14 02:43:43 +01:00
Improved logging
This commit is contained in:
parent
f8230badba
commit
de609e49f0
|
@ -494,7 +494,11 @@ echo "1";
|
|||
if ($errorno == 2006) {
|
||||
if (self::$in_retrial || !self::reconnect()) {
|
||||
// It doesn't make sense to continue when the database connection was lost
|
||||
logger('Giving up because of database error '.$errorno.': '.$error);
|
||||
if (self::$in_retrial) {
|
||||
logger('Giving up retrial because of database error '.$errorno.': '.$error);
|
||||
} else {
|
||||
logger("Couldn't reconnect after database error ".$errorno.': '.$error);
|
||||
}
|
||||
exit(1);
|
||||
} else {
|
||||
// We try it again
|
||||
|
|
Loading…
Reference in a new issue