Skip to content

Commit 62bbaa2

Browse files
committed
fix log level
1 parent 93895d1 commit 62bbaa2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/postgres/users.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ SELECT pg_catalog.format('GRANT ALL PRIVILEGES ON DATABASE %I TO %I',
177177
continue
178178
}
179179
if cluster.CompareVersion("2.7.0") >= 0 && user.GrantPublicSchemaAccess != nil && *user.GrantPublicSchemaAccess {
180-
log.V(1).Info("Granting access to public schema for user.", "name", string(user.Name))
180+
log.Info("Granting access to public schema for user.", "name", string(user.Name))
181181
if err = grantUserAccessToPublicSchemaInPostgreSQL(ctx, exec, user); err != nil {
182182
return err
183183
}

0 commit comments

Comments
 (0)