Skip to content

Commit 5a2c2fd

Browse files
committed
Adjust a Quota balance calculation log
1 parent 8af08dd commit 5a2c2fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

framework/quota/src/main/java/org/apache/cloudstack/quota/QuotaManagerImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ protected void processQuotaBalanceForAccount(AccountVO accountVo, List<QuotaUsag
157157
.map(quotaUsageVO -> new Pair<>(quotaUsageVO.getStartDate(), quotaUsageVO.getEndDate()))
158158
.collect(Collectors.toCollection(LinkedHashSet::new));
159159

160-
logger.info(String.format("Processing quota balance for account[{}] between [{}] and [{}].", accountToString, startDate, lastQuotaUsageEndDate));
160+
logger.info("Processing quota balance for account [{}] between [{}] and [{}].", accountToString, startDate, lastQuotaUsageEndDate);
161161

162162
long accountId = accountVo.getAccountId();
163163
long domainId = accountVo.getDomainId();

0 commit comments

Comments
 (0)