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

Commit 6163b7c

Browse files
committed
Changing logging from warn to info
1 parent 2bcc93d commit 6163b7c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,9 @@ protected String getPayload(CommandContext context) {
107107
} else if (createDatabaseWithoutFile) {
108108
return buildDefaultDatabasePayload(context);
109109
} else {
110-
logger.warn(format("Database file '%s' does not exist, so not executing", databaseFilename));
110+
if (logger.isInfoEnabled()) {
111+
logger.info(format("Database file '%s' does not exist, so not executing", databaseFilename));
112+
}
111113
return null;
112114
}
113115
}

0 commit comments

Comments
 (0)