add debug log to workspace path location

This commit is contained in:
Maidul Islam
2023-02-25 11:25:49 -05:00
parent 1777f98aef
commit cac83ab927

View File

@@ -105,6 +105,8 @@ func FindWorkspaceConfigFile() (string, error) {
_, err := os.Stat(path)
if err == nil {
// file found
log.Debugf("FindWorkspaceConfigFile: workspace file found at [path=%s]", path)
return path, nil
}