We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93895d1 commit 62bbaa2Copy full SHA for 62bbaa2
1 file changed
internal/postgres/users.go
@@ -177,7 +177,7 @@ SELECT pg_catalog.format('GRANT ALL PRIVILEGES ON DATABASE %I TO %I',
177
continue
178
}
179
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))
+ log.Info("Granting access to public schema for user.", "name", string(user.Name))
181
if err = grantUserAccessToPublicSchemaInPostgreSQL(ctx, exec, user); err != nil {
182
return err
183
0 commit comments