Chore: Fix logging message in folder service (#62939)

This commit is contained in:
Sofia Papagiannaki
2023-02-06 12:11:32 +01:00
committed by GitHub
parent f815c690d7
commit ee2878f189

View File

@@ -162,7 +162,7 @@ func (s *Service) GetChildren(ctx context.Context, cmd *folder.GetChildrenQuery)
// fetch folder from dashboard store
dashFolder, err := s.dashboardFolderStore.GetFolderByUID(ctx, f.OrgID, f.UID)
if err != nil {
s.log.Error("failed to fetch folder by UID: %s from dashboard store", f.UID, err)
s.log.Error("failed to fetch folder by UID from dashboard store", "uid", f.UID, "error", err)
continue
}