Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit 094759d

Browse files
committed
#338 Changed logging to info
1 parent 1a39650 commit 094759d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/com/marklogic/appdeployer/command/databases/DeployOtherDatabasesCommand.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,9 @@ public List<DatabasePlan> buildDatabasePlans(CommandContext context) {
152152
List<DatabasePlan> databasePlans = mergeDatabasePlanFiles(context, databasePlan);
153153
buildDeployDatabaseCommands(context, databasePlans);
154154

155-
if (logger.isDebugEnabled()) {
156-
logger.debug("Logging each DatabasePlan before any databases are created/updated:");
157-
databasePlans.forEach(plan -> logger.debug(plan + "\n"));
155+
if (logger.isInfoEnabled()) {
156+
logger.info("Logging the files for each database before it's created or updated:");
157+
databasePlans.forEach(plan -> logger.info(plan + "\n"));
158158
}
159159

160160
return databasePlans;

0 commit comments

Comments
 (0)