Skip to content
Open
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 2.1.11
- Enable to change log level for generate at runtime

## 2.1.8
- Tests handled properly.

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<version>2.0.15</version>
</parent>
<properties>
<eiffel-remrem-publish.version>2.1.8</eiffel-remrem-publish.version>
<eiffel-remrem-publish.version>2.1.11</eiffel-remrem-publish.version>
<eiffel-remrem-semantics.version>2.4.2</eiffel-remrem-semantics.version>
</properties>
<artifactId>eiffel-remrem-publish</artifactId>
Expand Down
3 changes: 3 additions & 0 deletions publish-service/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,7 @@ spring.mvc.pathmatch.matching-strategy: ANT_PATH_MATCHER
#Maximum number of templates in array passed to generateAndPublish endpoint
maxSizeOfInputArray: 250

management.endpoints.web.exposure.include=loggers
management.endpoint.loggers.enabled=true


5 changes: 4 additions & 1 deletion wiki/markdown/logging.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,7 @@ When used without logback.xml log messages will look as below:

To configure the logback.xml file use -Dlogging.config=path/logback.xml

To get info about logback configurations see [here](https://logback.qos.ch/manual/configuration.html).
To get info about logback configurations see [here](https://logback.qos.ch/manual/configuration.html).

To enable log level changes at run time with restart using actuator endpoint. Do the changes using curl command like this:
curl -X POST http://localhost:8080/actuator/loggers/com.ericsson.eiffel.remrem -H "Content-Type: application/json" -d '{"configuredLevel": "DEBUG"}'