From bd7ae34ddfa1ec6a9fe3b45dbadf22d57f39631b Mon Sep 17 00:00:00 2001
From: Gesner Passos <gesner.passos@stfc.ac.uk>
Date: Thu, 31 Jan 2013 12:53:59 +0000
Subject: [PATCH] Remove warning message from download

The warning message is not true, because the update has been done trough
another instance of the script repository, but will make the user worry,
so remove it.

re #6175
---
 .../Framework/ScriptRepository/src/GitScriptRepository.cpp    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Code/Mantid/Framework/ScriptRepository/src/GitScriptRepository.cpp b/Code/Mantid/Framework/ScriptRepository/src/GitScriptRepository.cpp
index 71e93cd32b6..b53811ad6c9 100644
--- a/Code/Mantid/Framework/ScriptRepository/src/GitScriptRepository.cpp
+++ b/Code/Mantid/Framework/ScriptRepository/src/GitScriptRepository.cpp
@@ -564,7 +564,7 @@ namespace API
       throw invalidRepository();
 
     if (!update_called){
-      g_log.warning() << "The information about the remote repository may be out-to-date.\n"
+      g_log.debug() << "The information about the remote repository may be out-to-date.\n"
                       << "Maybe you should update that information through ::update() method\n";
     }
 
@@ -660,7 +660,7 @@ namespace API
   
     if (err)
       throw gitException("Failure to download."); /// @todo provide a better explanation.
-    g_log.debug() << "download ok! \n"; 
+    g_log.notice() << file_path  << " downloaded!" << std::endl; 
   }
 
 
-- 
GitLab