BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
app.imagivibe.com
/
vendor
/
sentry
/
sentry
/
src
/
Logger
📤 Upload
📝 New File
📁 New Folder
Close
Editing: DebugFileLogger.php
<?php declare(strict_types=1); namespace Sentry\Logger; class DebugFileLogger extends DebugLogger { /** * @var string */ private $filePath; public function __construct(string $filePath) { $this->filePath = $filePath; } public function write(string $message): void { file_put_contents($this->filePath, $message, \FILE_APPEND); } }
Save
Cancel