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
log
I've encountered a problem when trying to point logs toSTDOUT. My options look like this:
STDOUT
def server_options { log: "-", pid_path: pid_file, worker_type: "process", supervisor: true, daemonize: true, log_rotate_age: no_log_rotation, workers: workers_amount, restart_server_process: true } end
log: "-" points logs to STDOUT as per documentation https://github.com/treasure-data/serverengine/blame/master/README.md#L501 However this doesn't work and seems the root cause is here: https://github.com/treasure-data/serverengine/blame/master/lib/serverengine/daemon.rb#L87
log: "-"
Is there a way to make log: "-" option actually work?
Note: This is essential when logging into files is not appropriate e.g. dockerization.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I've encountered a problem when trying to point logs to
STDOUT
.My options look like this:
log: "-"
points logs toSTDOUT
as per documentation https://github.com/treasure-data/serverengine/blame/master/README.md#L501However this doesn't work and seems the root cause is here: https://github.com/treasure-data/serverengine/blame/master/lib/serverengine/daemon.rb#L87
Is there a way to make
log: "-"
option actually work?Note: This is essential when logging into files is not appropriate e.g. dockerization.
The text was updated successfully, but these errors were encountered: