diff --git a/pkg/util/log/clog.go b/pkg/util/log/clog.go index 4a326669272d..35f17f431c12 100644 --- a/pkg/util/log/clog.go +++ b/pkg/util/log/clog.go @@ -238,8 +238,8 @@ func SetTenantIDs(tenantID string, sqlInstanceID int32) { // new log files, even on the first log file. This ensures that grep // will always find it. ctx := logtags.AddTag(context.Background(), "config", nil) - logfDepth(ctx, 1, severity.INFO, channel.DEV, "tenantID: %s", tenantID) // TODO(knz): Use OPS here. - logfDepth(ctx, 1, severity.INFO, channel.DEV, "instanceID: %d", sqlInstanceID) // TODO(knz): Use OPS here. + logfDepth(ctx, 1, severity.INFO, channel.OPS, "tenantID: %s", tenantID) + logfDepth(ctx, 1, severity.INFO, channel.OPS, "instanceID: %d", sqlInstanceID) // Perform the change proper. logging.idMu.Lock()