Skip to content

Commit b1fb28a

Browse files
Merge pull request #1094 from ontodev/fix-1091
Restore logging details for CLI
2 parents 92374e5 + 87bd596 commit b1fb28a

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Added
1111
- Subset method added to [`extract`] [#1000]
1212

13+
### Fixed
14+
- Restore logging details for CLI [#1091]
15+
1316
## [1.9.2] - 2023-02-09
1417

1518
### Changed
@@ -344,7 +347,7 @@ First official release of ROBOT!
344347
[`template`]: http://robot.obolibrary.org/template
345348
[`validate`]: http://robot.obolibrary.org/validate
346349

347-
[#1000]: https://github.com/ontodev/robot/pull/1000
350+
[#1091]: https://github.com/ontodev/robot/issues/1091
348351
[#1086]: https://github.com/ontodev/robot/pull/1086
349352
[#1084]: https://github.com/ontodev/robot/issues/1084
350353
[#1071]: https://github.com/ontodev/robot/pull/1071
@@ -354,6 +357,7 @@ First official release of ROBOT!
354357
[#1017]: https://github.com/ontodev/robot/issues/1017
355358
[#1016]: https://github.com/ontodev/robot/issues/1016
356359
[#1009]: https://github.com/ontodev/robot/issues/1009
360+
[#1000]: https://github.com/ontodev/robot/pull/1000
357361
[#979]: https://github.com/ontodev/robot/pull/979
358362
[#978]: https://github.com/ontodev/robot/pull/978
359363
[#977]: https://github.com/ontodev/robot/pull/977
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<configuration>
3+
<appender name="console" class="ch.qos.logback.core.ConsoleAppender">
4+
<encoder>
5+
<pattern>%d %-5p %c - %m%n</pattern>
6+
</encoder>
7+
</appender>
8+
<statusListener class="ch.qos.logback.core.status.NopStatusListener"/>
9+
<logger name="user" level="DEBUG"/>
10+
<logger name="org.semanticweb.elk" level="off"/>
11+
<logger name="org.obolibrary.obo2owl" level="off"/>
12+
<root level="ERROR">
13+
<appender-ref ref="console"/>
14+
</root>
15+
</configuration>

0 commit comments

Comments
 (0)