Skip to content

Commit 2f2b601

Browse files
author
Huksley
committed
Removed excessive log output
1 parent f54de23 commit 2f2b601

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

jar.jardesc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="Windows-1251" standalone="no"?>
22
<jardesc>
3-
<jar path="Builds/manual/GraylogSyslogOutput.jar"/>
3+
<jar path="graylog2-plugin-output-syslog/GraylogSyslogOutput.jar"/>
44
<options buildIfNeeded="true" compress="true" descriptionLocation="/graylog2-plugin-output-syslog/jar.jardesc" exportErrors="true" exportWarnings="true" includeDirectoryEntries="false" overwrite="true" saveDescription="true" storeRefactorings="false" useSourceFolders="false"/>
55
<storedRefactorings deprecationInfo="true" structuralOnly="false"/>
66
<selectedProjects/>

src/main/java/com/wizecore/graylog2/plugin/StructuredSender.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public void send(SyslogIF syslog, int level, Message msg) {
3131
// http://www.iana.org/assignments/enterprise-numbers/enterprise-numbers
3232
// <name>@<enterpriseId>
3333
String sdId = "all@0";
34-
log.info("Sending " + level + ", " + msg.getId() + ", " + msg.getSource() + ", " + sdId + "=" + sdParams + ", " + msg.getMessage());
34+
// log.info("Sending " + level + ", " + msg.getId() + ", " + msg.getSource() + ", " + sdId + "=" + sdParams + ", " + msg.getMessage());
3535
Map<String,Map<String,String>> sd = new HashMap<String, Map<String,String>>();
3636
sd.put(sdId, sdParams);
3737

0 commit comments

Comments
 (0)