Skip to content

Commit 673dc56

Browse files
committed
remove extra logging
1 parent 1666aae commit 673dc56

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

engine/schema/src/main/java/com/cloud/upgrade/dao/Upgrade42010to42100.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ public void updateSystemVmTemplates(Connection conn) {
9090

9191
protected void migrateConfigurationScopeToBitmask(Connection conn) {
9292
String scopeDataType = DbUpgradeUtils.getTableColumnType(conn, "configuration", "scope");
93-
System.out.println("------------------------" + scopeDataType);
9493
logger.info("------------------------{}", scopeDataType);
9594
if (!"varchar(255)".equals(scopeDataType)) {
9695
return;

framework/config/src/main/java/org/apache/cloudstack/framework/config/ConfigKey.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ protected T valueInGlobalOrAvailableParentScope(Scope scope, Long id) {
338338
return valueInScope(s.first(), s.second());
339339
}
340340
} while (s != null);
341-
logger.trace("Global value for config ({}}): {}", _name, _value);
341+
logger.trace("Global value for config ({}): {}", _name, _value);
342342
return value();
343343
}
344344

@@ -350,7 +350,7 @@ public T valueInScope(Scope scope, Long id) {
350350
if (value == null) {
351351
return valueInGlobalOrAvailableParentScope(scope, id);
352352
}
353-
logger.trace("Scope({}) value for config ({}}): {}", scope, _name, _value);
353+
logger.trace("Scope({}) value for config ({}): {}", scope, _name, _value);
354354
return valueOf(value);
355355
}
356356

0 commit comments

Comments
 (0)