@@ -299,19 +299,19 @@ abstract class AbstractServerTask extends AbstractLibertyTask {
299
299
if (optionsFile. exists() && jvmOptionsPath == null ) {
300
300
// if using pre-existing installation, do not delete file
301
301
if (project. liberty. installDir == null ) {
302
- logger. warn (optionsFile. getCanonicalPath() + " file deleted before processing plugin configuration." )
302
+ logger. info (optionsFile. getCanonicalPath() + " file deleted before processing plugin configuration." )
303
303
optionsFile. delete();
304
304
}
305
305
}
306
306
if ((server. jvmOptions != null && ! server. jvmOptions. isEmpty()) || ! jvmProjectProps. isEmpty()){
307
307
if (jvmOptionsPath != null ) {
308
- logger. warn (" The " + jvmOptionsPath + " file is overwritten by inlined configuration." )
308
+ logger. info (" The " + jvmOptionsPath + " file is overwritten by inlined configuration." )
309
309
}
310
310
writeJvmOptions(optionsFile, server. jvmOptions, jvmProjectProps)
311
311
jvmOptionsPath = " inlined configuration"
312
312
} else if (server. jvmOptionsFile != null && server. jvmOptionsFile. exists()) {
313
313
if (jvmOptionsPath != null ) {
314
- logger. warn (" The " + jvmOptionsPath + " file is overwritten by the " + server. jvmOptionsFile. getCanonicalPath() + " file." );
314
+ logger. info (" The " + jvmOptionsPath + " file is overwritten by the " + server. jvmOptionsFile. getCanonicalPath() + " file." );
315
315
}
316
316
Files . copy(server. jvmOptionsFile. toPath(), optionsFile. toPath(), StandardCopyOption . REPLACE_EXISTING )
317
317
jvmOptionsPath = server. jvmOptionsFile. getCanonicalPath()
@@ -323,19 +323,19 @@ abstract class AbstractServerTask extends AbstractLibertyTask {
323
323
if (bootstrapFile. exists() && bootStrapPropertiesPath == null ) {
324
324
// if using pre-existing installation, do not delete file
325
325
if (project. liberty. installDir == null ) {
326
- logger. warn (bootstrapFile. getCanonicalPath() + " file deleted before processing plugin configuration." )
326
+ logger. info (bootstrapFile. getCanonicalPath() + " file deleted before processing plugin configuration." )
327
327
bootstrapFile. delete();
328
328
}
329
329
}
330
330
if ((server. bootstrapProperties != null && ! server. bootstrapProperties. isEmpty()) || ! bootstrapProjectProps. isEmpty()){
331
331
if (bootStrapPropertiesPath != null ) {
332
- logger. warn (" The " + bootStrapPropertiesPath + " file is overwritten by inlined configuration." )
332
+ logger. info (" The " + bootStrapPropertiesPath + " file is overwritten by inlined configuration." )
333
333
}
334
334
writeBootstrapProperties(bootstrapFile, server. bootstrapProperties, bootstrapProjectProps)
335
335
bootStrapPropertiesPath = " inlined configuration"
336
336
} else if (server. bootstrapPropertiesFile != null && server. bootstrapPropertiesFile. exists()) {
337
337
if (bootStrapPropertiesPath != null ) {
338
- logger. warn (" The " + bootStrapPropertiesPath + " file is overwritten by the " + server. bootstrapPropertiesFile. getCanonicalPath() + " file." )
338
+ logger. info (" The " + bootStrapPropertiesPath + " file is overwritten by the " + server. bootstrapPropertiesFile. getCanonicalPath() + " file." )
339
339
}
340
340
Files . copy(server. bootstrapPropertiesFile. toPath(), bootstrapFile. toPath(), StandardCopyOption . REPLACE_EXISTING )
341
341
bootStrapPropertiesPath = server. bootstrapPropertiesFile. getCanonicalPath()
@@ -347,7 +347,7 @@ abstract class AbstractServerTask extends AbstractLibertyTask {
347
347
// generate a config file on the server with any Liberty configuration variables specified via project properties
348
348
File pluginVariableConfig = new File (serverDirectory, PLUGIN_VARIABLE_CONFIG_OVERRIDES_XML )
349
349
if (pluginVariableConfig. exists()) {
350
- logger. warn (pluginVariableConfig. getCanonicalPath() + " file deleted before processing plugin configuration." )
350
+ logger. debug (pluginVariableConfig. getCanonicalPath() + " file deleted before processing plugin configuration." )
351
351
pluginVariableConfig. delete();
352
352
}
353
353
if ((server. var != null && ! server. var. isEmpty()) || ! varProjectProps. isEmpty()) {
@@ -358,7 +358,7 @@ abstract class AbstractServerTask extends AbstractLibertyTask {
358
358
// generate a config file on the server with any Liberty configuration default variables specified via project properties
359
359
pluginVariableConfig = new File (serverDirectory, PLUGIN_VARIABLE_CONFIG_DEFAULTS_XML )
360
360
if (pluginVariableConfig. exists()) {
361
- logger. warn (pluginVariableConfig. getCanonicalPath() + " file deleted before processing plugin configuration." )
361
+ logger. debug (pluginVariableConfig. getCanonicalPath() + " file deleted before processing plugin configuration." )
362
362
pluginVariableConfig. delete();
363
363
}
364
364
if ((server. defaultVar != null && ! server. defaultVar. isEmpty()) || ! defaultVarProjectProps. isEmpty()) {
0 commit comments