You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: utbot-instrumentation/src/main/kotlin/org/utbot/instrumentation/instrumentation/execution/phases/ExecutionPhase.kt
<?xml version="1.0" encoding="UTF-8"?><Configuration> <Appenders><!-- Idea catches plugin stdout log and wraps it in its own format, so in IDE only message is logged--> <Console name="IdeaAppender" target="SYSTEM_OUT"> <PatternLayout pattern="| UtBot - %-25c{1} | %msg%n"/> </Console><!-- When working as separate process - temporary log4j2.xml would be created, in which --><!-- substring `ref="IdeaAppender"` will be replaced with `ref="EngineProcessAppender"`--><!-- You can set bufferIO=true and immediateFlush=false for better performance, but possibly lose some logs on process death - log4j2 service might die unflushed--> <RollingFile append="true" name="EngineProcessAppender" bufferedIO="false" immediateFlush="true" fileName="${env:UTBOT_LOG_DIR}utbot-engine-current.log" filePattern="${env:UTBOT_LOG_DIR}utbot-engine-%i.log" bufferSize="1048576"> <PatternLayout pattern="%d{HH:mm:ss.SSS} | %-5level | %-25c{1} | %msg%n"/> <Policies> <SizeBasedTriggeringPolicy size="20 MB"/> </Policies> <DefaultRolloverStrategy max="10"/> </RollingFile> </Appenders> <Loggers> <Logger name="org.utbot.intellij" level="info" additivity="false"> <AppenderRef ref="IdeaAppender"/> </Logger> <Logger name="org.utbot" level="info" additivity="false"> <AppenderRef ref="IdeaAppender"/> </Logger> <Root level="error"> <AppenderRef ref="IdeaAppender"/> </Root> </Loggers></Configuration>
1
+
<?xml version="1.0" encoding="UTF-8"?>
2
+
<Configuration>
3
+
<Appenders>
4
+
<!-- Idea catches plugin stdout log and wraps it in its own format, so in IDE only message is logged-->
Copy file name to clipboardExpand all lines: utbot-summary/src/main/kotlin/org/utbot/summary/Summarization.kt
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,11 @@ import soot.SootMethod
38
38
39
39
privateval logger =KotlinLogging.logger {}
40
40
41
-
fun Collection<UtMethodTestSet>.summarizeAll(searchDirectory:Path, sourceFile:File?): List<UtMethodTestSet> = logger.info().bracket({"------------------------Summarization for ${this.size} test cases------------------------"}) {
41
+
fun Collection<UtMethodTestSet>.summarizeAll(searchDirectory:Path, sourceFile:File?): List<UtMethodTestSet> = logger.info().bracket({
0 commit comments