We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Whenever I am having an exception this is connected to a tracking before and after where phpbrake tries to read /.git/HEAD:
/.git/HEAD
The error is located in vendor/airbrake/phpbrake/src/Notifier.php:505
vendor/airbrake/phpbrake/src/Notifier.php:505
Why is it trying to go from system root?
My setup is this:
// initialize tracking $airbrakeId = Env::getString('AIRBRAKE_ID'); $airbrakeKey = Env::getString('AIRBRAKE_KEY'); // configure notifier for Airbrake $notifier = new Notifier([ 'projectId' => $airbrakeId, 'projectKey' => $airbrakeKey, 'appVersion' => Config::getVersion(), //'rootDirectory' => Constants::getString('ROOT_DIR'), 'environment' => Config::getEnvironment(), ]); // register error handlers Instance::set($notifier); $handler = new ErrorHandler($notifier); $handler->register();
It tries to go for system root with rootDirectory set and not set.
rootDirectory
What might cause this behaviour? The actual error/exception is tracked properly.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Whenever I am having an exception this is connected to a tracking before and after where phpbrake tries to read
/.git/HEAD
:The error is located in
vendor/airbrake/phpbrake/src/Notifier.php:505
Why is it trying to go from system root?
My setup is this:
It tries to go for system root with
rootDirectory
set and not set.What might cause this behaviour? The actual error/exception is tracked properly.
The text was updated successfully, but these errors were encountered: