cc-3936: removed intrusive logging
This commit is contained in:
parent
ba61d4f4fb
commit
687a6d3c5a
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Reference in New Issue