Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FSSDK-9774] chore: convert warning into error log for SyncConfig failure #383

Merged
merged 1 commit into from
Nov 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pkg/config/polling_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ func (cm *PollingProjectConfigManager) SyncConfig() {

if e != nil {
msg := "unable to fetch fresh datafile"
cm.logger.Warning(msg)
cm.logger.Error(msg, e)
cm.configLock.Lock()

if code == http.StatusForbidden {
Expand All @@ -156,7 +156,7 @@ func (cm *PollingProjectConfigManager) SyncConfig() {

projectConfig, err := datafileprojectconfig.NewDatafileProjectConfig(datafile, logging.GetLogger(cm.sdkKey, "NewDatafileProjectConfig"))
if err != nil {
cm.logger.Warning("failed to create project config")
cm.logger.Error("failed to create project config", err)
closeMutex(errors.New("unable to parse datafile"))
return
}
Expand Down