You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when using the --log option I see the progress and messages of the deployment in the given logfile.
when the deployment runs into a exception and stopps, the message of the exception is missing from the logfile.
it would be very helpful to have at least the message of the occured exception in the logfile, at best even the stacktrace next to it.
Steps to reproduce
dep errors --log deployer.log
Content of deploy.php
namespaceDeployer;
require'recipe/common.php';
task('errors', function() {
run('echo "test"'); // create some output, works correctlythrownew \Exception("boooom!"); // this exception message is missing from the logfile
});
Output log
With enabled option for verbose output -vvv.
[localhost] > echo "test"
[localhost] < test
The text was updated successfully, but these errors were encountered:
Description
when using the
--log
option I see the progress and messages of the deployment in the given logfile.when the deployment runs into a exception and stopps, the message of the exception is missing from the logfile.
it would be very helpful to have at least the message of the occured exception in the logfile, at best even the stacktrace next to it.
Steps to reproduce
dep errors --log deployer.log
Content of
deploy.php
Output log
With enabled option for verbose output
-vvv
.The text was updated successfully, but these errors were encountered: