Skip to content

Commit 875af7f

Browse files
committed
down grade log level
1 parent 1c4ee77 commit 875af7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

controllers/operator/manager.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ func (m *ODLMOperator) GetOperandRegistry(ctx context.Context, key types.Namespa
9090
}
9191

9292
if catalogSourceName == "" || catalogSourceNs == "" {
93-
klog.Warningf("no catalogsource found for %v", o.PackageName)
93+
klog.V(2).Infof("no catalogsource found for %v", o.PackageName)
9494
}
9595

9696
reg.Spec.Operators[i].SourceName, reg.Spec.Operators[i].SourceNamespace = catalogSourceName, catalogSourceNs
@@ -147,7 +147,7 @@ func (m *ODLMOperator) GetCatalogSourceFromPackage(ctx context.Context, packageN
147147

148148
switch number {
149149
case 0:
150-
klog.Warningf("Not found PackageManifest %s in the namespace %s has channel %s", packageName, namespace, channel)
150+
klog.V(2).Infof("Not found PackageManifest %s in the namespace %s has channel %s", packageName, namespace, channel)
151151
return "", "", nil
152152
case 1:
153153
if excludedCatalogSources != nil && util.Contains(excludedCatalogSources, packageManifestList.Items[0].Status.CatalogSource) {

0 commit comments

Comments
 (0)