mldonkey-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Mldonkey-commits] Changes to mldonkey/src/daemon/common/commonWeb.ml


From: mldonkey-commits
Subject: [Mldonkey-commits] Changes to mldonkey/src/daemon/common/commonWeb.ml
Date: Sun, 21 Aug 2005 12:05:21 -0400

Index: mldonkey/src/daemon/common/commonWeb.ml
diff -u mldonkey/src/daemon/common/commonWeb.ml:1.18 
mldonkey/src/daemon/common/commonWeb.ml:1.19
--- mldonkey/src/daemon/common/commonWeb.ml:1.18        Sun Aug 21 14:25:59 2005
+++ mldonkey/src/daemon/common/commonWeb.ml     Sun Aug 21 16:05:20 2005
@@ -58,7 +58,7 @@
   H.wget r f
 
 let load_url kind url =
-  lprintf_nl "CommonWeb: Loading %s" url;
+  lprintf_nl "[cWeb] Loading %s" url;
   let f =
     try
       (List.assoc kind !file_kinds) url
@@ -73,7 +73,7 @@
   try
     (List.assoc kind !file_kinds) file file
   with e ->
-      lprintf_nl "Exception %s while loading kind %s"
+      lprintf_nl "[cWeb] Exception %s while loading kind %s"
         (Printexc2.to_string e)
       kind
 
@@ -185,7 +185,7 @@
             UdpSocket.write propagation_socket false s (Ip.from_name name) 
port;
 
           with e ->
-              lprintf_nl "Exception %s in udp_sendonly" (Printexc2.to_string 
e);
+              lprintf_nl "[cWeb] Exception %s in udp_sendonly" 
(Printexc2.to_string e);
         end
     end
 
@@ -204,7 +204,7 @@
       let packet = gen_redirector_packet () in
       Ip.async_ip name (fun ip ->
           try
-            if !verbose_redirector then lprintf_nl "connecting to redirector";
+            if !verbose_redirector then lprintf_nl "[cWeb] connecting to 
redirector";
             let token = create_token unlimited_connection_manager in
             let sock = TcpBufferedSocket.connect token "connect redirector"
                 (Ip.to_inet_addr ip) port            
@@ -217,7 +217,7 @@
             TcpBufferedSocket.set_rtimeout sock 30.;
             let to_read = ref [] in
             set_reader sock (cut_messages (fun opcode s ->
-                  if !verbose_redirector then lprintf_nl "redirector info 
received";
+                  if !verbose_redirector then lprintf_nl "[cWeb] redirector 
info received";
                   let module L = LittleEndian in
 
                   let motd_html_s, pos = L.get_string16 s 2 in
@@ -273,7 +273,7 @@
                   let ip = L.get_ip s pos in
                   last_high_id := ip;
 
-                  lprintf_nl "Redirector info loaded (IP set to %s)"
+                  lprintf_nl "[cWeb] Redirector info loaded (IP set to %s)"
                     (Ip.to_string ip);
                   TcpBufferedSocket.set_lifetime sock 30.;
 
@@ -281,7 +281,7 @@
             write_string sock packet
 
           with e -> 
-              lprintf_nl "Exception %s while connecting redirector"
+              lprintf_nl "[cWeb] Exception %s while connecting redirector"
                 (Printexc2.to_string e)
       )
     end;
@@ -298,7 +298,7 @@
         | "kad" -> if !!enable_kademlia then load_url kind url
         | "ocl" -> if !!enable_overnet then load_url kind url
         | "server.met" -> if !!enable_donkey then load_url kind url
-        | _ -> lprintf_nl "unparsed kind to refresh: %s" kind; load_url kind 
url
+        | _ -> lprintf_nl "[cWeb] unparsed kind to refresh: %s" kind; load_url 
kind url
             ) !!CommonOptions.web_infos
 
 type rss_feed = {




reply via email to

[Prev in Thread] Current Thread [Next in Thread]