File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
deployment/src/main/java/io/quarkiverse/loggingmanager/deployment Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ public void filterOpenAPI(OpenAPI openAPI) {
5353 openAPI .getPaths ()
5454 .addPathItem (basePath , createLoggersPathItem ())
5555 .addPathItem (basePath + "/levels" , createLevelsPathItem ())
56- .addPathItem (basePath + "/duration " , createDurationPathItem ());
56+ .addPathItem (basePath + "/temporary-level " , createTemporaryLevelPathItem ());
5757 }
5858
5959
@@ -143,7 +143,7 @@ private PathItem createLevelsPathItem() {
143143 .items (OASFactory .createSchema ().ref (REF_LOGGER_LEVEL ))))))));
144144 }
145145
146- private PathItem createDurationPathItem () {
146+ private PathItem createTemporaryLevelPathItem () {
147147 Map <String , Schema > properties = new LinkedHashMap <>();
148148 properties .put ("loggerName" , OASFactory .createSchema ().type (List .of (Schema .SchemaType .STRING )));
149149 properties .put ("loggerLevel" , OASFactory .createSchema ().ref (REF_LOGGER_LEVEL ));
You can’t perform that action at this time.
0 commit comments