summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Christen <mc@yacy.net>2022-10-03 10:44:03 +0200
committerMichael Christen <mc@yacy.net>2022-10-03 10:44:03 +0200
commit8b37a5dc6f7bce7d39a4157caea0a469e3d90447 (patch)
tree6d8cd386d77ef349fd49cb15715bc4729d41dcb2
parent347b676b76e2af0464bd607f431cee06570b3a2c (diff)
removed log4j properties because we don't have a log4j any more
-rw-r--r--build.xml4
-rw-r--r--source/log4j.properties7
2 files changed, 0 insertions, 11 deletions
diff --git a/build.xml b/build.xml
index 781b54e58..1310a682b 100644
--- a/build.xml
+++ b/build.xml
@@ -106,9 +106,6 @@
<!-- apply replacments -->
<copy file="${defaults}/yacyBuild.properties.template" tofile="${defaults}/yacyBuild.properties" overwrite="true" filtering="true" />
-
- <!-- copy log4j config file -->
- <copy file="${src}/log4j.properties" tofile="${build}/log4j.properties" overwrite="true" filtering="false" /> <!-- @TODO: obsolete, contains no replace/filter pattern -->
</target>
@@ -366,7 +363,6 @@
<!-- make clean -->
<target name="clean" description="make clean">
<delete dir="${release_main}" failonerror="false"/>
- <delete file="${build}/log4j.properties" failonerror="false"/>
<delete file="${lib}/yacycore.jar" failonerror="false"/>
<delete failonerror="false">
<fileset dir="${src}" includes="**/*.class" />
diff --git a/source/log4j.properties b/source/log4j.properties
deleted file mode 100644
index 1d4d2f18f..000000000
--- a/source/log4j.properties
+++ /dev/null
@@ -1,7 +0,0 @@
-#### Use only the log to console appender
-log4j.rootCategory=info, stdout
-log4j.appender.stdout=org.apache.log4j.ConsoleAppender
-log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
-
-# Pattern to output the caller's file name and line number.
-log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F%L) - %m%n