[asterisk-scf-commits] asterisk-scf/release/routing.git branch	"master" updated.
    Commits to the Asterisk SCF project code repositories 
    asterisk-scf-commits at lists.digium.com
       
    Tue Jan  4 21:41:20 UTC 2011
    
    
  
branch "master" has been updated
       via  229737c095035362f35c8f24c00462149e1c23eb (commit)
      from  4a97865504713362dbb8ffbfc312c902f6772fcf (commit)
Summary of changes:
 src/BasicRoutingServiceApp.cpp       |    2 +-
 src/EndpointRegistry.cpp             |    2 +-
 src/LuaScriptProcessor.cpp           |    2 +-
 src/RoutingServiceEventPublisher.cpp |    2 +-
 src/SessionRouter.cpp                |    2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)
- Log -----------------------------------------------------------------
commit 229737c095035362f35c8f24c00462149e1c23eb
Author: David M. Lee <dlee at digium.com>
Date:   Fri Dec 10 14:36:23 2010 -0600
    Ref-counting Logger changes.
diff --git a/src/BasicRoutingServiceApp.cpp b/src/BasicRoutingServiceApp.cpp
index 3920cc2..f32d60e 100644
--- a/src/BasicRoutingServiceApp.cpp
+++ b/src/BasicRoutingServiceApp.cpp
@@ -44,7 +44,7 @@ using namespace AsteriskSCF::SmartProxy;
 
 namespace
 {
-Logger &lg = getLoggerFactory().getLogger("AsteriskSCF.BasicRoutingService");
+Logger lg = getLoggerFactory().getLogger("AsteriskSCF.BasicRoutingService");
 }
 using namespace AsteriskSCF::Core::Routing::V1::Event;
 
diff --git a/src/EndpointRegistry.cpp b/src/EndpointRegistry.cpp
index 6eecc72..6993aeb 100644
--- a/src/EndpointRegistry.cpp
+++ b/src/EndpointRegistry.cpp
@@ -29,7 +29,7 @@ using namespace ::std;
 
 namespace
 {
-Logger &lg = getLoggerFactory().getLogger("AsteriskSCF.BasicRoutingService");
+Logger lg = getLoggerFactory().getLogger("AsteriskSCF.BasicRoutingService");
 }
 
 namespace AsteriskSCF
diff --git a/src/LuaScriptProcessor.cpp b/src/LuaScriptProcessor.cpp
index c4ce529..08ee85a 100644
--- a/src/LuaScriptProcessor.cpp
+++ b/src/LuaScriptProcessor.cpp
@@ -27,7 +27,7 @@ using namespace ::std;
 
 namespace
 {
-Logger &lg = getLoggerFactory().getLogger("AsteriskSCF.BasicRoutingService");
+Logger lg = getLoggerFactory().getLogger("AsteriskSCF.BasicRoutingService");
 }
 
 namespace AsteriskSCF
diff --git a/src/RoutingServiceEventPublisher.cpp b/src/RoutingServiceEventPublisher.cpp
index 8aae895..5d120c5 100644
--- a/src/RoutingServiceEventPublisher.cpp
+++ b/src/RoutingServiceEventPublisher.cpp
@@ -25,7 +25,7 @@ using namespace ::AsteriskSCF::System::Logging;
 
 namespace
 {
-Logger &lg = getLoggerFactory().getLogger("AsteriskSCF.BasicRoutingService");
+Logger lg = getLoggerFactory().getLogger("AsteriskSCF.BasicRoutingService");
 }
 
 namespace AsteriskSCF
diff --git a/src/SessionRouter.cpp b/src/SessionRouter.cpp
index b50b711..874f312 100644
--- a/src/SessionRouter.cpp
+++ b/src/SessionRouter.cpp
@@ -31,7 +31,7 @@ using namespace std;
 
 namespace
 {
-Logger &lg = getLoggerFactory().getLogger("AsteriskSCF.BasicRoutingService");
+Logger lg = getLoggerFactory().getLogger("AsteriskSCF.BasicRoutingService");
 }
 
 /**
-----------------------------------------------------------------------
-- 
asterisk-scf/release/routing.git
    
    
More information about the asterisk-scf-commits
mailing list