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
Hello!
I'm trying to support someone who's using tokenizer, which logs.
tokenizer
They're on a platform without Syslog support, and they reach the part of core which does Syslog access.
core
Perhaps they could set an ENV var, like:
But the code in this line: https://github.com/opener-project/core/blob/master/lib/opener/core/syslog.rb#L13 seems to expect "the empty string" to be false. (The empty string is not false in Ruby.)
false
Example, showing an "empty JUSTTESTING" environment variable to be "the empty string":
JUSTTESTING= ruby -e 'puts ENV.inspect'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello!
I'm trying to support someone who's using
tokenizer
, which logs.They're on a platform without Syslog support, and they reach the part of
core
which does Syslog access.Perhaps they could set an ENV var, like:
But the code in this line: https://github.com/opener-project/core/blob/master/lib/opener/core/syslog.rb#L13 seems to expect "the empty string" to be
false
. (The empty string is not false in Ruby.)Example, showing an "empty JUSTTESTING" environment variable to be "the empty string":
JUSTTESTING= ruby -e 'puts ENV.inspect'
The text was updated successfully, but these errors were encountered: