chore(config): add debug log

This commit is contained in:
Felix Wiedmann
2019-06-13 20:10:06 +02:00
parent edd1cbbfec
commit c8a9f04f6b

View File

@@ -81,6 +81,8 @@ func checkProvider(config ReleaseConfig) (ReleaseConfig, error) {
return ReleaseConfig{}, fmt.Errorf("config: Can not find environment variable %s", token) return ReleaseConfig{}, fmt.Errorf("config: Can not find environment variable %s", token)
} }
config.GitProvider.AccessToken = token config.GitProvider.AccessToken = token
} else {
log.Debugln("No provider is set, will continue")
} }
return config, nil return config, nil
} }