mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2026-01-06 04:26:57 +00:00
Update TablesInitializer.java (#7735)
updated error messages to be logger messages
This commit is contained in:
parent
ace235922a
commit
a3ef95644f
@ -312,16 +312,16 @@ public final class TablesInitializer {
|
||||
|
||||
private static void printToConsoleInDebug(String message) {
|
||||
if (DEBUG_MODE) {
|
||||
System.out.println(message);
|
||||
logger.log(message);
|
||||
}
|
||||
}
|
||||
|
||||
private static void printError(String message) {
|
||||
System.err.println(message);
|
||||
logger.log(message);
|
||||
}
|
||||
|
||||
private static void printToConsoleMandatory(String message) {
|
||||
System.out.println(message);
|
||||
logger.log(message);
|
||||
}
|
||||
|
||||
private static void createIngestionBot(OpenMetadataApplicationConfig config, Jdbi jdbi) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user