Skip to content

Commit 1e4a99f

Browse files
authored
Update HowToUseLoggers.md (#354)
Minor corrections of the text.
1 parent 52ea0b8 commit 1e4a99f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

HowToUseLoggers.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The file is usually in the resource folder.
1818

1919
The easiest way is:
2020

21-
- Go in the code that you are going to debug. Let’s assume it is a method in com.home.utbot.framework.plugin.api.UtBotTestCaseGenerator.
21+
- Go in the code that you are going to debug. Let’s assume it is a method in org.utbot.framework.plugin.api.UtBotTestCaseGenerator.
2222
- Find out if there is a KotlinLogging object that is used to create a **logger**
2323
- If such a logger exists, use the fully qualified class name as the logger name in the next steps
2424
<br/>
@@ -28,7 +28,7 @@ The easiest way is:
2828
Open log4j2.xml and add the logger in the loggers section like this
2929

3030
```
31-
<Logger name=" com.home.utbot.framework.plugin.api.UtBotTestCaseGenerator " level="info">
31+
<Logger name=" org.utbot.framework.plugin.api.UtBotTestCaseGenerator " level="info">
3232
<AppenderRef ref="Console"/>
3333
</Logger>
3434
```
@@ -78,6 +78,6 @@ Having this logger, you can use it in code with different log levels in parallel
7878
3. Find the closest log4j2.xml file (usually it is located in the resources file), enable the logger with a desirable log level
7979

8080

81-
`<Logger name="com.huawei.utbot.engine.UtBotSymbolicEngine.timeout" level="debug"/>`
81+
`<Logger name="org.utbot.engine.UtBotSymbolicEngine.timeout" level="debug"/>`
8282

8383

0 commit comments

Comments
 (0)