We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9ec1dc commit 7658672Copy full SHA for 7658672
bin/hbase
@@ -804,9 +804,10 @@ fi
804
805
HEAP_SETTINGS="$JAVA_HEAP_MAX $JAVA_OFFHEAP_MAX"
806
# by now if we're running a command it means we need logging
807
+# prepend the logging jars to make sure they are before the ones coming from HADOOP_CLASSPATH
808
for f in ${HBASE_HOME}/lib/client-facing-thirdparty/log4j*.jar; do
809
if [ -f "${f}" ]; then
- CLASSPATH="${CLASSPATH}:${f}"
810
+ CLASSPATH="${f}:${CLASSPATH}"
811
fi
812
done
813
0 commit comments