File tree 2 files changed +4
-4
lines changed
main/java/com/guicedee/guicedservlets/rest/services
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 14
14
exports com .guicedee .guicedservlets .rest .services ;
15
15
exports com .guicedee .guicedservlets .rest .internal ;
16
16
17
- requires java .xml .bind ;
17
+ requires jakarta .xml .bind ;
18
18
19
19
requires java .xml ;
20
20
requires transitive com .fasterxml .jackson .jaxrs .json ;
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ private void scanClassesIn() {
43
43
.value ();
44
44
JaxRsPackageRegistrations .getPackageNames ()
45
45
.add (classInfo .getPackageName ());
46
- log .fine ("Mapping Jax-RS Application - " + classInfo .loadClass ()
46
+ log .config ("Mapping Jax-RS Application - " + classInfo .loadClass ()
47
47
.getCanonicalName () + " to " + path );
48
48
49
49
getApplications ().add (classInfo .loadClass ()
@@ -60,7 +60,7 @@ private void scanClassesIn() {
60
60
.getAnnotation (Path .class )
61
61
.value ();
62
62
63
- log .fine ("Mapping Jax-RS Path - " + classInfo .loadClass ()
63
+ log .config ("Mapping Jax-RS Path - " + classInfo .loadClass ()
64
64
.getCanonicalName () + " to " + path );
65
65
JaxRsPackageRegistrations .getPackageNames ()
66
66
.add (classInfo .getPackageName ());
@@ -81,7 +81,7 @@ private void scanClassesIn() {
81
81
continue ;
82
82
}
83
83
84
- log .fine ("Mapping Provider - " + classInfo .loadClass ()
84
+ log .config ("Mapping Provider - " + classInfo .loadClass ()
85
85
.getCanonicalName ());
86
86
JaxRsPackageRegistrations .getPackageNames ()
87
87
.add (classInfo .getPackageName ());
You can’t perform that action at this time.
0 commit comments