为什么Spring INFO会记录到标准错误?

我有许多数据库集成测试,它们使用以下注释进行事务回滚:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations={"classpath:ApplicationContext-DAOs.xml"})
@Transactional
测试通过,但是当我运行它们时,Spring认为有必要将INFO级别的日志记录到标准错误!它记录如下:
19/11/2010 16:49:11 org.springframework.test.context.TestContextManager
  retrieveTestExecutionListeners
INFO: @TestExecutionListeners is not present for class [class my.SomeDAOTest]:
  using defaults.
etc for many, many lines ...
我该把它关掉?     
已邀请:
您可以使用log4j隐藏它。在log4j.xml中,为spring设置一个记录器来警告(或错误)。
<logger name="org.springframework">
    <level value="warn"/>
</logger>
    

要回复问题请先登录注册