summaryrefslogtreecommitdiff
path: root/framework/Db/TDbTransaction.php
diff options
context:
space:
mode:
Diffstat (limited to 'framework/Db/TDbTransaction.php')
-rwxr-xr-xframework/Db/TDbTransaction.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/Db/TDbTransaction.php b/framework/Db/TDbTransaction.php
index ff9924d3..357dd645 100755
--- a/framework/Db/TDbTransaction.php
+++ b/framework/Db/TDbTransaction.php
@@ -61,7 +61,7 @@ class TDbTransaction extends TComponent
{
if($this->_active && $this->_connection->getActive())
{
- Prado::trace('Committing transaction','system.db.TDbTransaction');
+ Prado::trace('Committing transaction','system.Db.TDbTransaction');
$this->_connection->getPdoInstance()->commit();
$this->_active=false;
}
@@ -77,7 +77,7 @@ class TDbTransaction extends TComponent
{
if($this->_active && $this->_connection->getActive())
{
- Prado::trace('Rolling back transaction','system.db.TDbTransaction');
+ Prado::trace('Rolling back transaction','system.Fb.TDbTransaction');
$this->_connection->getPdoInstance()->rollBack();
$this->_active=false;
}