-
Notifications
You must be signed in to change notification settings - Fork 296
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #243 from ashitsalesforce/master
Fixes due to the upgraded Spring framework and log4j
- Loading branch information
Showing
8 changed files
with
103 additions
and
81 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
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,35 +1,25 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd"> | ||
<log4j:configuration> | ||
<appender name="A1" class="org.apache.log4j.FileAppender"> | ||
<param name="File" value="${java.io.tmpdir}/sdl.log" /> | ||
<param name="Append" value="false" /> | ||
<layout class="org.apache.log4j.PatternLayout"> | ||
<param name="ConversionPattern" | ||
value="%d %-5p [%t] %C{2} %M (%F:%L) - %m%n"/> | ||
</layout> | ||
</appender> | ||
<appender name="STDOUT" class="org.apache.log4j.ConsoleAppender"> | ||
<layout class="org.apache.log4j.PatternLayout"> | ||
<param name="ConversionPattern" | ||
value="%d %-5p [%t] %C{2} %M (%F:%L) - %m%n"/> | ||
</layout> | ||
</appender> | ||
|
||
<category name="org.apache.log4j.xml"> | ||
<priority value="warn" /> | ||
<appender-ref ref="A1" /> | ||
<appender-ref ref="STDOUT" /> | ||
</category> | ||
|
||
<logger name="org.apache" > | ||
<level value ="warn" /> | ||
<configuration> | ||
<appenders> | ||
<File name="A1" fileName="${sys:java.io.tmpdir}/sdl.log" append="false"> | ||
<PatternLayout pattern="%d %-5p [%t] %C{2} %M (%F:%L) - %m%n"/> | ||
</File> | ||
<CONSOLE name="STDOUT" target="SYSTEM_OUT"> | ||
<PatternLayout pattern="%d %-5p [%t] %C{2} %M (%F:%L) - %m%n"/> | ||
</CONSOLE> | ||
</appenders> | ||
<loggers> | ||
<logger name="org.apache.log4j.xml" level="warn"> | ||
<appender-ref ref="A1"/> | ||
<AppenderRef ref="STDOUT" /> | ||
</logger> | ||
|
||
<root> | ||
<priority value ="@LOG_LEVEL@" /> | ||
<appender-ref ref="A1" /> | ||
<appender-ref ref="STDOUT" /> | ||
</root> | ||
</log4j:configuration> | ||
|
||
<logger name="org.apache" level="warn"> | ||
<appender-ref ref="A1"/> | ||
<AppenderRef ref="STDOUT" /> | ||
</logger> | ||
<root level="@LOG_LEVEL@"> | ||
<AppenderRef ref="A1"/> | ||
<AppenderRef ref="STDOUT" /> | ||
</root> | ||
</loggers> | ||
</configuration> |
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
3 changes: 2 additions & 1 deletion
3
src/main/resources/com/salesforce/dataloader/version.properties
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 @@ | ||
dataloader.name = ${project.name} | ||
dataloader.version = ${project.version} | ||
dataloader.vendor = ${organization.name} | ||
dataloader.vendor = ${organization.name} | ||
dataloader.apiversion = ${force.partner.api.version} |