© 2025 Nöbetçi Eczaneler. Tüm hakları saklıdır.
Writing to the log file failed: Write of 5996 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6007 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 5971 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 5978 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6052 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6094 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6335 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6604 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6692 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 7648 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 7884 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: file_put_contents(): Write of 15 bytes failed with errno=28 No space left on device
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}} (500 Internal Server Error)
Writing to the log file failed: Write of 5996 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6007 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 5971 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 5978 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6052 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6094 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6335 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6604 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6692 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 7648 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 7884 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: file_put_contents(): Write of 15 bytes failed with errno=28 No space left on device
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Exception
$this -> write ( $record );
return;
}
throw new \UnexpectedValueException ( 'Writing to the log file failed: ' . $error . Utils :: getRecordMessageForException ( $record ));
}
$this -> retrying = false ;
if ( $this -> useLocking ) {
flock ( $stream , LOCK_UN );
$record = $this -> processRecord ( $record );
}
$record -> formatted = $this -> getFormatter ()-> format ( $record );
$this -> write ( $record );
return false === $this -> bubble ;
}
/**
}
// once the record is initialized, send it to all handlers as long as the bubbling chain is not interrupted
try {
$handled = true ;
if ( true === $handler -> handle (clone $record )) {
break;
}
} catch ( Throwable $e ) {
$this -> handleException ( $e , $record );
* @param string|Stringable $message The log message
* @param mixed[] $context The log context
*/
public function error ( string | \Stringable $message , array $context = []): void
{
$this -> addRecord ( Level :: Error , (string) $message , $context );
}
/**
* Adds a log record at the CRITICAL level.
*
* @param array $context
* @return void
*/
protected function writeLog ( $level , $message , $context ): void
{
$this -> logger ->{ $level }(
$message = $this -> formatMessage ( $message ),
$context = array_merge ( $this -> context , $context )
);
$this -> fireLogEvent ( $level , $message , $context );
* @param array $context
* @return void
*/
public function error ( $message , array $context = []): void
{
$this -> writeLog ( __FUNCTION__ , $message , $context );
}
/**
* Log a warning message to the logs.
*
* @param array $context
* @return void
*/
public function error ( $message , array $context = []): void
{
$this -> driver ()-> error ( $message , $context );
}
/**
* Exceptional occurrences that are not errors.
*
);
$context = $this -> buildExceptionContext ( $e );
method_exists ( $logger , $level )
? $logger ->{ $level }( $e -> getMessage (), $context )
: $logger -> log ( $level , $e -> getMessage (), $context );
}
/**
* Determine if the exception should be reported.
if ( $this -> shouldntReport ( $e )) {
return;
}
$this -> reportThrowable ( $e );
}
/**
* Reports error based on report method on exception or to logger.
*
* @param \Throwable $e
* @return void
*/
protected function reportException ( Throwable $e )
{
$this -> app [ ExceptionHandler ::class]-> report ( $e );
}
/**
* Render the exception to a response.
*
try {
$request -> enableHttpMethodParameterOverride ();
$response = $this -> sendRequestThroughRouter ( $request );
} catch ( Throwable $e ) {
$this -> reportException ( $e );
$response = $this -> renderException ( $request , $e );
}
$this -> app [ 'events' ]-> dispatch (