From 0d52209432c7070c7cfd177221dcc517491fa2c2 Mon Sep 17 00:00:00 2001 From: GRMrGecko Date: Mon, 6 Jan 2025 14:50:44 -0600 Subject: [PATCH] Fix config name duplication. --- config.go | 2 +- main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config.go b/config.go index e411892..39afbff 100644 --- a/config.go +++ b/config.go @@ -29,7 +29,7 @@ type Config struct { type LogConfig struct { Level string `fig:"level" yaml:"level" enum:"debug,info,warn,error" default:"info"` - Type string `fig:"level" yaml:"level" enum:"json,console" default:"console"` + Type string `fig:"type" yaml:"type" enum:"json,console" default:"console"` } // Configuration for updating. diff --git a/main.go b/main.go index 00ce066..91e2ba2 100644 --- a/main.go +++ b/main.go @@ -6,7 +6,7 @@ const ( serviceDisplayName = "Virtual VXLAN" serviceVendor = "com.mrgeckosmedia" serviceDescription = "Virtual VXLAN using TUN interfaces" - serviceVersion = "0.1" + serviceVersion = "0.1.1" defaultConfigFile = "config.yaml" )