diff --git a/README.md b/README.md index b45cc05a..52a1d769 100644 --- a/README.md +++ b/README.md @@ -95,8 +95,8 @@ It provides the following information: | `PROMETHEUS_NAMESPACE` | string | `""` | Sets the metric label `namespace` to the specified value. Label is omitted if the value provided is empty.| | `PROMETHEUS_LABEL_ID` | string | `""` | Sets the metric label `id` to the specified value. Label is omitted if the value provided is empty.| | `LOG_FILE_PATH` | string | `""`| Specify the log file path used if `--verbose` is disabled. The logfile path will be an automatically generated temp file if not specified. | -| `LOG_LEVEL` | string | `"info"`| Specify the log level of the default logger, one of: `debug`, `warn`, `error` | -| `LOG_FORMAT` | string | `""`| Specify the log format of the default logger, defaults to `text` formatter, allows `json` | +| `F1_LOG_LEVEL` | string | `"info"`| Specify the log level of the default logger, one of: `debug`, `warn`, `error` | +| `F1_LOG_FORMAT` | string | `""`| Specify the log format of the default logger, defaults to `text` formatter, allows `json` | ## Contributions If you'd like to help improve `f1`, please fork this repo and raise a PR! diff --git a/internal/envsettings/env.go b/internal/envsettings/env.go index 16796612..43a98ee4 100644 --- a/internal/envsettings/env.go +++ b/internal/envsettings/env.go @@ -12,8 +12,8 @@ const ( EnvPrometheusPushGateway = "PROMETHEUS_PUSH_GATEWAY" EnvLogFilePath = "LOG_FILE_PATH" - EnvLogFormat = "LOG_FORMAT" - EnvLogLevel = "LOG_LEVEL" + EnvLogFormat = "F1_LOG_FORMAT" + EnvLogLevel = "F1_LOG_LEVEL" EnvFluentdHost = "FLUENTD_HOST" EnvFluentdPort = "FLUENTD_PORT" diff --git a/pkg/f1/f1.go b/pkg/f1/f1.go index e147e880..97c66fd3 100644 --- a/pkg/f1/f1.go +++ b/pkg/f1/f1.go @@ -47,7 +47,7 @@ func New() *F1 { // WithLogger allows specifying logger to be used for all internal and scenario logs // -// This will disable the LOG_LEVEL and LOG_FORMAT options, as they only relate to the built-in +// This will disable the F1_LOG_LEVEL and F1_LOG_FORMAT options, as they only relate to the built-in // logger. // // The logger will be used for non-interactive output, file logs or when `--verbose` is specified.