summaryrefslogtreecommitdiff
path: root/internal/config
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2021-10-02 10:46:47 +0300
committerPaul Buetow <paul@buetow.org>2021-10-02 12:26:36 +0300
commit764ef99a3d779a0db1fb60679292af52425ba2f6 (patch)
tree2547b3bd4472a4178173dfe1d8f4178af591c37e /internal/config
parent609921f9c783941eaa9019a92b78ec45b49d681c (diff)
add more default fields to MAPREDUCE
Diffstat (limited to 'internal/config')
-rw-r--r--internal/config/args.go2
-rw-r--r--internal/config/config.go1
2 files changed, 1 insertions, 2 deletions
diff --git a/internal/config/args.go b/internal/config/args.go
index 7f24348..484aa8b 100644
--- a/internal/config/args.go
+++ b/internal/config/args.go
@@ -39,7 +39,7 @@ func (a *Args) String() string {
var sb strings.Builder
sb.WriteString("Args(")
- // TODO: All commands should make use of this
+
sb.WriteString(fmt.Sprintf("%s:%s,", "LogDir", a.LogDir))
sb.WriteString(fmt.Sprintf("%s:%s,", "LogLevel", a.LogLevel))
sb.WriteString(fmt.Sprintf("%s:%v,", "Arguments", a.Arguments))
diff --git a/internal/config/config.go b/internal/config/config.go
index 76dcc65..3d05a11 100644
--- a/internal/config/config.go
+++ b/internal/config/config.go
@@ -85,7 +85,6 @@ func (c *configInitializer) transformConfig(args *Args, additionalArgs []string,
if args.LogDir != "" {
common.LogDir = args.LogDir
if common.LogStrategy == "" {
- // TODO: Implement the other (not-daily) log strategy for the server.
common.LogStrategy = "daily"
}
}