This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-eyes.git


The following commit(s) were added to refs/heads/main by this push:
     new 10f6414  config: Fix incorrect log message (#91)
10f6414 is described below

commit 10f6414d57fcce05e5633b5ba30de6d3417a1ac1
Author: Xuanwo <[email protected]>
AuthorDate: Sat Feb 12 15:31:20 2022 +0800

    config: Fix incorrect log message (#91)
    
    * config: Fix incorrect log message
---
 pkg/config/config.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pkg/config/config.go b/pkg/config/config.go
index 712fcb1..42e7be5 100644
--- a/pkg/config/config.go
+++ b/pkg/config/config.go
@@ -45,7 +45,7 @@ func (config *Config) Parse(file string) (err error) {
        }
 
        if os.IsNotExist(err) {
-               logger.Log.Infof("No config file is given, using the default 
config")
+               logger.Log.Infof("Config file %s does not exist, using the 
default config", file)
 
                if bytes, err = assets.Asset("default-config.yaml"); err != nil 
{
                        return err

Reply via email to