diff options
author | Julien Lancelot <julien.lancelot@gmail.com> | 2013-01-15 14:23:10 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@gmail.com> | 2013-01-15 14:23:10 +0100 |
commit | 6cc7d8fb593160ae46f09d848c38044578cf56bf (patch) | |
tree | 4dbc58d7280e5cda339d7ac4838859989bac1abf /sonar-plugin-api | |
parent | b85d76cec7181b50e73551a33d9ff4e904185b17 (diff) | |
download | sonarqube-6cc7d8fb593160ae46f09d848c38044578cf56bf.tar.gz sonarqube-6cc7d8fb593160ae46f09d848c38044578cf56bf.zip |
SONAR-2501 Use log at debug level
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/tests/ProjectTestsImpl.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/tests/ProjectTestsImpl.java b/sonar-plugin-api/src/main/java/org/sonar/api/tests/ProjectTestsImpl.java index dd36e78bef7..44324b46be8 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/tests/ProjectTestsImpl.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/tests/ProjectTestsImpl.java @@ -46,7 +46,7 @@ public class ProjectTestsImpl implements ProjectTests, BatchExtension { FileTest fileTest = getFileTest(fileTestKey); fileTest.addTest(test); - LOG.info("Added a new test : " + toString()); + LOG.debug("Added a new test : " + toString()); } public List<FileTest> getFileTests() { @@ -55,7 +55,7 @@ public class ProjectTestsImpl implements ProjectTests, BatchExtension { public void cover(String fileTestKey, String test, String mainFile, Collection<Integer> lines){ FileTest fileTest = find(fileTestKey); - LOG.info("Covering - File test :" + toString() + ", test:" + test + ", file:" + mainFile+ ", lines:"+ Iterables.toString(lines)); + LOG.debug("Covering - File test :" + toString() + ", test:" + test + ", file:" + mainFile+ ", lines:"+ Iterables.toString(lines)); } private FileTest getFileTest(final String key) { |