mirror of
https://github.com/corda/corda.git
synced 2025-01-05 20:54:13 +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:
parent
61ba2d617e
commit
70eedcdf97
@ -56,7 +56,7 @@ public class StackTraceElement {
|
||||
}
|
||||
|
||||
public String getClassName() {
|
||||
return class_;
|
||||
return class_.replace('/', '.');
|
||||
}
|
||||
|
||||
public String getMethodName() {
|
||||
|
Loading…
Reference in New Issue
Block a user