Log missing web application context at warn level (instead of debug)

Closes gh-26925
This commit is contained in:
Juergen Hoeller 2021-05-11 15:45:36 +02:00
parent 7f670bbe68
commit 46b7cd54a1
1 changed files with 5 additions and 4 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2012 the original author or authors.
* Copyright 2002-2021 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -85,10 +85,11 @@ public abstract class SpringBeanAutowiringSupport {
bpp.processInjection(target);
}
else {
if (logger.isDebugEnabled()) {
logger.debug("Current WebApplicationContext is not available for processing of " +
if (logger.isWarnEnabled()) {
logger.warn("Current WebApplicationContext is not available for processing of " +
ClassUtils.getShortName(target.getClass()) + ": " +
"Make sure this class gets constructed in a Spring web application. Proceeding without injection.");
"Make sure this class gets constructed in a Spring web application after the" +
"Spring WebApplicationContext has been initialized. Proceeding without injection.");
}
}
}