cc-3936: removed intrusive logging

This commit is contained in:
Rudi Grinberg 2012-08-27 11:44:33 -04:00
parent ba61d4f4fb
commit 687a6d3c5a
2 changed files with 0 additions and 2 deletions

View File

@ -183,7 +183,6 @@ class Application_Model_StoredFile
if (isset($this->_dbMD[$dbColumn])) { if (isset($this->_dbMD[$dbColumn])) {
$propelColumn = $this->_dbMD[$dbColumn]; $propelColumn = $this->_dbMD[$dbColumn];
$method = "set$propelColumn"; $method = "set$propelColumn";
Logging::info($method);
$this->_file->$method($mdValue); $this->_file->$method($mdValue);
} }
} }

View File

@ -29,7 +29,6 @@ class EventContractor(Loggable):
some other event in the storage was morphed into this newer one. some other event in the storage was morphed into this newer one.
Which should mean that the old event should be discarded. Which should mean that the old event should be discarded.
""" """
self.logger.info("Attempting to register: '%s'" % str(evt))
if self.event_registered(evt): if self.event_registered(evt):
old_e = self.get_old_event(evt) old_e = self.get_old_event(evt)
# TODO : Perhaps there are other events that we can "contract" # TODO : Perhaps there are other events that we can "contract"