From 2e9c610931b4e0a6bab25b1fe5dbd0def45ee126 Mon Sep 17 00:00:00 2001 From: jsdelfino Date: Sun, 9 Jan 2011 03:39:08 +0000 Subject: Fix memory leak in Python runtime integration. Reduce memory consumption of debug trace functions. Add trace points to help track the lifecycle of some of the runtime context objects. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1056880 13f79535-47bb-0310-9956-ffa450edef68 --- sca-cpp/trunk/components/log/scribe.hpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'sca-cpp/trunk/components/log/scribe.hpp') diff --git a/sca-cpp/trunk/components/log/scribe.hpp b/sca-cpp/trunk/components/log/scribe.hpp index 5237bd0183..1e0ce46511 100644 --- a/sca-cpp/trunk/components/log/scribe.hpp +++ b/sca-cpp/trunk/components/log/scribe.hpp @@ -65,18 +65,23 @@ namespace scribe { class Scribe { public: Scribe() : owner(false) { + debug("scribe::scribe"); } Scribe(const string host, const int port) : owner(true) { + debug(host, "scribe::scribe::host"); + debug(port, "scribe::scribe::port"); init(host, port); } Scribe(const Scribe& c) : owner(false) { + debug("scribe::scribe::copy"); client = c.client; transport = c.transport; } ~Scribe() { + debug("scribe::~scribe"); if (!owner) return; try { -- cgit v1.2.3