When submit a new request to a offline fluent server, got an exception but that exception never show an error message becouse on file
vendor/fluent/logger/src/FluentLogger.php:328 the function $errors = error_get_last(); doesn't work and the array is NULL
i think is better to fix and show the right error message
just now i've fixed with
if(empty($errors)) {
$errors['message'] = "Unable to connect to the server";
}
if ok i will commit the fix