Skip to content

Commit

Permalink
Fix airspec doc
Browse files Browse the repository at this point in the history
  • Loading branch information
xerial committed Jan 18, 2024
1 parent c6aa90b commit 3bff3b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/airspec.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ $ sbt

# Configure log levels of airframe-log
> testOnly -- -l (level) # Set the log level for the test target classes
> testOnly -- -L(package):(level) # Set log level for a specific package or class
> testOnly -- -L(package)=(level) # Set log level for a specific package or class

# sbt's default test functionalities:
> testQuick # Run only previously failed test specs
Expand Down Expand Up @@ -258,7 +258,7 @@ This will set the log level to debug for all test classes.
To change the log level only for a specific package or a class, use `-L(package or class)=(log level)` option:

```scala
> testOnly -- -Lorg.mydomain.myapp:debug
> testOnly -- -Lorg.mydomain.myapp=debug
```
You can use multiple `-L` options to set different log levels for multiple packages.

Expand Down

0 comments on commit 3bff3b4

Please sign in to comment.