Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,31 @@ public Log getInstance(String name) {
return getLog(name);
}

// Just in case some code happens to call uncommon Commons Logging methods...

@Deprecated
public Object getAttribute(String name) {
return null;
}

@Deprecated
public String[] getAttributeNames() {
return new String[0];
}

@Deprecated
public void removeAttribute(String name) {
// do nothing
}

@Deprecated
public void setAttribute(String name, Object value) {
// do nothing
}

@Deprecated
public void release() {
// do nothing
}

}