hailin0 commented on code in PR #3696:
URL:
https://github.com/apache/incubator-seatunnel/pull/3696#discussion_r1046744511
##########
config/log4j2.properties:
##########
@@ -16,63 +16,32 @@
# limitations under the License.
################################################################################
-property.file_path = ${sys:seatunnel.logs.path:-/tmp/seatunnel/logs}
-property.file_name = ${sys:seatunnel.logs.file_name:-seatunnel}
-property.file_split_size = 100MB
-property.file_count = 100
-property.file_ttl = 7d
+appender.console.type=Console
Review Comment:
If you need to output logs to files, you need to enable `fileAppender` and
close `console**Appender`
example
```properties
############################ log output to console
#############################
#rootLogger.appenderRef.consoleStdout.ref = consoleStdoutAppender
#rootLogger.appenderRef.consoleStderr.ref = consoleStderrAppender
############################ log output to console
#############################
############################ log output to file
#############################
rootLogger.appenderRef.file.ref = fileAppender
############################ log output to file
#############################
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]