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
InfluxDB version: 1.5
Setting INFLUXDB_LOGGING_LEVEL=warn results in error:
INFLUXDB_LOGGING_LEVEL=warn
run: apply env config: failed to apply INFLUXDB_LOGGING_LEVEL to Level using type zapcore.Level and value 'warn'
Which is fair enough, as its a int8 https://github.com/uber-go/zap/blob/master/zapcore/level.go#L32
int8
But I guess the string value needs to be unmarshalled: https://github.com/uber-go/zap/blob/master/zapcore/level.go#L126 when parsing config?
The text was updated successfully, but these errors were encountered:
jsternberg
No branches or pull requests
InfluxDB version: 1.5
Setting
INFLUXDB_LOGGING_LEVEL=warn
results in error:Which is fair enough, as its a
int8
https://github.com/uber-go/zap/blob/master/zapcore/level.go#L32But I guess the string value needs to be unmarshalled: https://github.com/uber-go/zap/blob/master/zapcore/level.go#L126 when parsing config?
The text was updated successfully, but these errors were encountered: