A common dysfunctional logging behavior I've seen is The Logging Level Arms Race:
I've seen production systems that only log at the SEVERE level because at any lower level the log files would just fill the disk too quickly for operations to be able to manage it.
(as seen on http://tech.groups.yahoo.com/group/testdrivendevelopment/message/34403 )
I suspect the real problem is you have such a team as needs all that logging to debug issues.
I find related things a lot where it seems as if certain developers do not know how to get the right amount of logging. It also helps to be able to write code that doesn't tend to get weird complex issues that can be understood only by overlogging.