please let me know if this should rather be posted in the community forum.
If i trigger an exception all i see in the fly logs is: ERROR unknown error
more precisely:

no details about it.
i tested this locally with frankenphp and stderr and did see the exception in frankenphp's log
logging.php
'stderr' => [
'driver' => 'monolog',
'level' => env('LOG_LEVEL', 'debug'),
'handler' => StreamHandler::class,
'formatter' => env('LOG_STDERR_FORMATTER'),
'formatter_with' => [
'includeStacktraces' => true,
],
'with' => [
'stream' => 'php://stderr',
],
'processors' => [PsrLogMessageProcessor::class],
],
fly.toml
[build]
[build.args]
NODE_VERSION = '18'
PHP_VERSION = '8.3'
[env]
APP_ENV = 'production'
LOG_CHANNEL = 'stderr'
LOG_LEVEL = 'info'
LOG_STDERR_FORMATTER = 'Monolog\Formatter\JsonFormatter'
SESSION_DRIVER = 'cookie'
SESSION_SECURE_COOKIE = 'true'
[http_service]
internal_port = 8000
force_https = true
auto_stop_machines = true
auto_start_machines = true
min_machines_running = 0
processes = ['app']
[processes]
app = ""
# cron = "cron -f"
# worker = "php artisan queue:listen"
[[vm]]
size = 'shared-cpu-1x'
memory = "512MB"
please let me know if this should rather be posted in the community forum.
If i trigger an exception all i see in the fly logs is:
ERROR unknown errormore precisely:

no details about it.
i tested this locally with frankenphp and stderr and did see the exception in frankenphp's log
logging.php
fly.toml