Commit 3276f6fa authored by mergify[bot]'s avatar mergify[bot] Committed by GitHub

Merge pull request #5234 from ethereum-optimism/jg/fix_flags

op-node: Fix logging flags with incorrect prefix
parents 3152615f 92222021
......@@ -14,10 +14,10 @@ import (
// Flags
const envVarPrefix = "OP_NODE_"
const envVarPrefix = "OP_NODE"
func prefixEnvVar(name string) string {
return envVarPrefix + name
return envVarPrefix + "_" + name
}
var (
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment