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: linkis-computation-governance/linkis-entrance/src/main/scala/org/apache/linkis/entrance/interceptor/impl/AISQLTransformInterceptor.scala
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -174,7 +174,7 @@ class AISQLTransformInterceptor extends EntranceInterceptor with Logging {
174
174
currentEngineType = starrocksEngineType
175
175
logAppender.append(
176
176
LogUtils.generateInfo(
177
-
s"use starrocks engine with datasource name : ${dataSource.getDataSourceName}"
177
+
s"use starrocks engine with datasource name : ${dataSource.getDataSourceName}\n"
178
178
)
179
179
)
180
180
} else {
@@ -186,7 +186,7 @@ class AISQLTransformInterceptor extends EntranceInterceptor with Logging {
186
186
)
187
187
logAppender.append(
188
188
LogUtils.generateInfo(
189
-
s"Failed to select starrocks engine, ${jobRequest.getExecuteUser} datasource does not exist. now use $currentEngineType"
189
+
s"Failed to select starrocks engine, ${jobRequest.getExecuteUser} datasource does not exist. now use $currentEngineType\n"
190
190
)
191
191
)
192
192
}
@@ -197,7 +197,7 @@ class AISQLTransformInterceptor extends EntranceInterceptor with Logging {
197
197
logger.warn("Failed to select starrocks engine: ", t)
198
198
logAppender.append(
199
199
LogUtils.generateInfo(
200
-
s"Failed to select starrocks engine, service exception. now use $currentEngineType"
200
+
s"Failed to select starrocks engine, service exception. now use $currentEngineType\n"
0 commit comments