mirror of
https://github.com/corda/corda.git
synced 2025-06-13 12:48:18 +00:00
replace slashes with dots in value returned by StackTraceElement.getClassName to make Classpath's java.util.logging.Logger happy
This commit is contained in:
@ -56,7 +56,7 @@ public class StackTraceElement {
|
||||
}
|
||||
|
||||
public String getClassName() {
|
||||
return class_;
|
||||
return class_.replace('/', '.');
|
||||
}
|
||||
|
||||
public String getMethodName() {
|
||||
|
Reference in New Issue
Block a user