We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
LogFactory
1 parent f1fb8cf commit 2445766Copy full SHA for 2445766
spring-jcl/src/main/java/org/apache/commons/logging/LogFactory.java
@@ -102,4 +102,31 @@ public Log getInstance(String name) {
102
return getLog(name);
103
}
104
105
+ // Just in case some code happens to call uncommon Commons Logging methods...
106
+
107
+ @Deprecated
108
+ public Object getAttribute(String name) {
109
+ return null;
110
+ }
111
112
113
+ public String[] getAttributeNames() {
114
+ return new String[0];
115
116
117
118
+ public void removeAttribute(String name) {
119
+ // do nothing
120
121
122
123
+ public void setAttribute(String name, Object value) {
124
125
126
127
128
+ public void release() {
129
130
131
132
0 commit comments