You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stratos.apache.org by la...@apache.org on 2015/03/06 07:58:30 UTC

stratos git commit: improving a log and a type

Repository: stratos
Updated Branches:
  refs/heads/master 67e9f85ce -> 37a1529ca


improving a log and a type


Project: http://git-wip-us.apache.org/repos/asf/stratos/repo
Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/37a1529c
Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/37a1529c
Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/37a1529c

Branch: refs/heads/master
Commit: 37a1529ca32a5ba95c0ac5eeb60c0cfc7a508b54
Parents: 67e9f85
Author: Lahiru Sandaruwan <la...@apache.org>
Authored: Fri Mar 6 12:28:15 2015 +0530
Committer: Lahiru Sandaruwan <la...@apache.org>
Committed: Fri Mar 6 12:28:15 2015 +0530

----------------------------------------------------------------------
 .../cartridge.agent/modules/artifactmgt/git/agentgithandler.py   | 4 ++--
 .../cartridge.agent/modules/subscriber/eventsubscriber.py        | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/stratos/blob/37a1529c/components/org.apache.stratos.python.cartridge.agent/src/main/python/cartridge.agent/cartridge.agent/modules/artifactmgt/git/agentgithandler.py
----------------------------------------------------------------------
diff --git a/components/org.apache.stratos.python.cartridge.agent/src/main/python/cartridge.agent/cartridge.agent/modules/artifactmgt/git/agentgithandler.py b/components/org.apache.stratos.python.cartridge.agent/src/main/python/cartridge.agent/cartridge.agent/modules/artifactmgt/git/agentgithandler.py
index 5fad062..5de2f6f 100644
--- a/components/org.apache.stratos.python.cartridge.agent/src/main/python/cartridge.agent/cartridge.agent/modules/artifactmgt/git/agentgithandler.py
+++ b/components/org.apache.stratos.python.cartridge.agent/src/main/python/cartridge.agent/cartridge.agent/modules/artifactmgt/git/agentgithandler.py
@@ -84,8 +84,8 @@ class AgentGitHandler:
             AgentGitHandler.log.debug("Cloning artifacts from %s for the first time to %s",
                                       git_repo.repo_url, git_repo.local_repo_path)
             subscribe_run = True
-            AgentGitHandler.log.debug("Executing git clone: [tenant-id] %s [repo-url] %s",
-                                      git_repo.tenant_id, git_repo.repo_url)
+            AgentGitHandler.log.debug("Executing git clone: [tenant-id] %s [repo-url] %s, [repo path] %s",
+                                      git_repo.tenant_id, git_repo.repo_url, git_repo.local_repo_path)
             git_repo = AgentGitHandler.clone(git_repo)
             AgentGitHandler.log.debug("Git clone executed: [tenant-id] %s [repo-url] %s",
                                       git_repo.tenant_id, git_repo.repo_url)

http://git-wip-us.apache.org/repos/asf/stratos/blob/37a1529c/components/org.apache.stratos.python.cartridge.agent/src/main/python/cartridge.agent/cartridge.agent/modules/subscriber/eventsubscriber.py
----------------------------------------------------------------------
diff --git a/components/org.apache.stratos.python.cartridge.agent/src/main/python/cartridge.agent/cartridge.agent/modules/subscriber/eventsubscriber.py b/components/org.apache.stratos.python.cartridge.agent/src/main/python/cartridge.agent/cartridge.agent/modules/subscriber/eventsubscriber.py
index d95e0b3..4154d46 100644
--- a/components/org.apache.stratos.python.cartridge.agent/src/main/python/cartridge.agent/cartridge.agent/modules/subscriber/eventsubscriber.py
+++ b/components/org.apache.stratos.python.cartridge.agent/src/main/python/cartridge.agent/cartridge.agent/modules/subscriber/eventsubscriber.py
@@ -22,7 +22,7 @@ import paho.mqtt.client as mqtt
 
 class EventSubscriber(threading.Thread):
     """
-    Provides functionality to subscribe to a given topic on the stratos MB and
+    Provides functionality to subscribe to a given topic on the Stratos MB and
     register event handlers for various events.
     """