forked from apache/jena
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
JENA-1902: Set default logging to output to stderr
- Loading branch information
Showing
113 changed files
with
530 additions
and
574 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
*.png binary | ||
*.jpg binary | ||
*.gif binary | ||
*.bat binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
@echo off | ||
@rem Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
if "%JENAROOT%" == "" goto :rootNotSet | ||
set JENA_HOME=%JENAROOT% | ||
:rootNotSet | ||
|
||
if NOT "%JENA_HOME%" == "" goto :okHome | ||
echo JENA_HOME not set | ||
exit /B | ||
|
||
:okHome | ||
set JENA_CP=%JENA_HOME%\lib\*; | ||
set LOGGING=file:%JENA_HOME%/jena-log4j.properties | ||
|
||
@rem JVM_ARGS comes from the environment. | ||
java %JVM_ARGS% -Dlog4j.configuration="%LOGGING%" -cp "%JENA_CP%" tdb2.tdbbackup %* | ||
exit /B | ||
@echo off | ||
@rem Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
if "%JENAROOT%" == "" goto :rootNotSet | ||
set JENA_HOME=%JENAROOT% | ||
:rootNotSet | ||
|
||
if NOT "%JENA_HOME%" == "" goto :okHome | ||
echo JENA_HOME not set | ||
exit /B | ||
|
||
:okHome | ||
set JENA_CP=%JENA_HOME%\lib\*; | ||
set LOGGING=file:%JENA_HOME%/log4j2.properties | ||
|
||
@rem JVM_ARGS comes from the environment. | ||
java %JVM_ARGS% -Dlog4j.configurationFile="%LOGGING%" -cp "%JENA_CP%" tdb2.tdbbackup %* | ||
exit /B |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
@echo off | ||
@rem Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
if "%JENAROOT%" == "" goto :rootNotSet | ||
set JENA_HOME=%JENAROOT% | ||
:rootNotSet | ||
|
||
if NOT "%JENA_HOME%" == "" goto :okHome | ||
echo JENA_HOME not set | ||
exit /B | ||
|
||
:okHome | ||
set JENA_CP=%JENA_HOME%\lib\*; | ||
set LOGGING=file:%JENA_HOME%/jena-log4j.properties | ||
|
||
@rem JVM_ARGS comes from the environment. | ||
java %JVM_ARGS% -Dlog4j.configuration="%LOGGING%" -cp "%JENA_CP%" tdb2.tdbcompact %* | ||
exit /B | ||
@echo off | ||
@rem Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
if "%JENAROOT%" == "" goto :rootNotSet | ||
set JENA_HOME=%JENAROOT% | ||
:rootNotSet | ||
|
||
if NOT "%JENA_HOME%" == "" goto :okHome | ||
echo JENA_HOME not set | ||
exit /B | ||
|
||
:okHome | ||
set JENA_CP=%JENA_HOME%\lib\*; | ||
set LOGGING=file:%JENA_HOME%/log4j2.properties | ||
|
||
@rem JVM_ARGS comes from the environment. | ||
java %JVM_ARGS% -Dlog4j.configurationFile="%LOGGING%" -cp "%JENA_CP%" tdb2.tdbcompact %* | ||
exit /B |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
@echo off | ||
@rem Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
if "%JENAROOT%" == "" goto :rootNotSet | ||
set JENA_HOME=%JENAROOT% | ||
:rootNotSet | ||
|
||
if NOT "%JENA_HOME%" == "" goto :okHome | ||
echo JENA_HOME not set | ||
exit /B | ||
|
||
:okHome | ||
set JENA_CP=%JENA_HOME%\lib\*; | ||
set LOGGING=file:%JENA_HOME%/jena-log4j.properties | ||
|
||
@rem JVM_ARGS comes from the environment. | ||
java %JVM_ARGS% -Dlog4j.configuration="%LOGGING%" -cp "%JENA_CP%" tdb2.tdbdump %* | ||
exit /B | ||
@echo off | ||
@rem Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
if "%JENAROOT%" == "" goto :rootNotSet | ||
set JENA_HOME=%JENAROOT% | ||
:rootNotSet | ||
|
||
if NOT "%JENA_HOME%" == "" goto :okHome | ||
echo JENA_HOME not set | ||
exit /B | ||
|
||
:okHome | ||
set JENA_CP=%JENA_HOME%\lib\*; | ||
set LOGGING=file:%JENA_HOME%/log4j2.properties | ||
|
||
@rem JVM_ARGS comes from the environment. | ||
java %JVM_ARGS% -Dlog4j.configurationFile="%LOGGING%" -cp "%JENA_CP%" tdb2.tdbdump %* | ||
exit /B |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
@echo off | ||
@rem Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
if "%JENAROOT%" == "" goto :rootNotSet | ||
set JENA_HOME=%JENAROOT% | ||
:rootNotSet | ||
|
||
if NOT "%JENA_HOME%" == "" goto :okHome | ||
echo JENA_HOME not set | ||
exit /B | ||
|
||
:okHome | ||
set JENA_CP=%JENA_HOME%\lib\*; | ||
set LOGGING=file:%JENA_HOME%/jena-log4j.properties | ||
|
||
@rem JVM_ARGS comes from the environment. | ||
java %JVM_ARGS% -Dlog4j.configuration="%LOGGING%" -cp "%JENA_CP%" tdb2.tdbloader %* | ||
exit /B | ||
@echo off | ||
@rem Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
if "%JENAROOT%" == "" goto :rootNotSet | ||
set JENA_HOME=%JENAROOT% | ||
:rootNotSet | ||
|
||
if NOT "%JENA_HOME%" == "" goto :okHome | ||
echo JENA_HOME not set | ||
exit /B | ||
|
||
:okHome | ||
set JENA_CP=%JENA_HOME%\lib\*; | ||
set LOGGING=file:%JENA_HOME%/log4j2.properties | ||
|
||
@rem JVM_ARGS comes from the environment. | ||
java %JVM_ARGS% -Dlog4j.configurationFile="%LOGGING%" -cp "%JENA_CP%" tdb2.tdbloader %* | ||
exit /B |
Oops, something went wrong.