Skip to content

Commit

Permalink
there may be too many open files
Browse files Browse the repository at this point in the history
  • Loading branch information
itrukhin committed Jul 15, 2024
1 parent 3332062 commit cf003d5
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/Log.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function alert($message, $context = [])
$message = FormatHelper::stringfyMessage($message);
$logger->alert($message, (array) $context);
} catch (\Exception $e) {
$this->logInnerException($e);
//there may be too many open files
}
}

Expand All @@ -50,7 +50,7 @@ public function critical($message, $context = [])
$message = FormatHelper::stringfyMessage($message);
$logger->critical($message, (array) $context);
} catch (\Exception $e) {
$this->logInnerException($e);
//there may be too many open files
}
}

Expand All @@ -66,7 +66,7 @@ public function error($message, $context = [])
$message = FormatHelper::stringfyMessage($message);
$logger->error($message, (array) $context);
} catch (\Exception $e) {
$this->logInnerException($e);
//there may be too many open files
}
}
}
Expand All @@ -83,7 +83,7 @@ public function warning($message, $context = [])
$message = FormatHelper::stringfyMessage($message);
$logger->warning($message, (array) $context);
} catch (\Exception $e) {
$this->logInnerException($e);
//there may be too many open files
}
}
}
Expand All @@ -100,7 +100,7 @@ public function notice($message, $context = [])
$message = FormatHelper::stringfyMessage($message);
$logger->notice($message, (array) $context);
} catch (\Exception $e) {
$this->logInnerException($e);
//there may be too many open files
}
}
}
Expand All @@ -117,7 +117,7 @@ public function info($message, $context = [])
$message = FormatHelper::stringfyMessage($message);
$logger->info($message, (array) $context);
} catch (\Exception $e) {
$this->logInnerException($e);
//there may be too many open files
}
}
}
Expand All @@ -134,7 +134,7 @@ public function debug($message, $context = [])
$message = FormatHelper::stringfyMessage($message);
$logger->debug($message, (array) $context);
} catch (\Exception $e) {
$this->logInnerException($e);
//there may be too many open files
}
}
}
Expand All @@ -150,7 +150,7 @@ public function emergency($message, $context = [])
$message = FormatHelper::stringfyMessage($message);
$logger->emergency($message, (array) $context);
} catch (\Exception $e) {
$this->logInnerException($e);
//there may be too many open files
}
}

Expand All @@ -167,7 +167,7 @@ public function log($level, $message, $context = [])
$message = FormatHelper::stringfyMessage($message);
$logger->log($level, $message, (array) $context);
} catch (\Exception $e) {
$this->logInnerException($e);
//there may be too many open files
}
}
}
Expand Down

0 comments on commit cf003d5

Please sign in to comment.