aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region')
-rw-r--r--OpenSim/Region/DataSnapshot/DataSnapshotManager.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/DataSnapshot/DataSnapshotManager.cs b/OpenSim/Region/DataSnapshot/DataSnapshotManager.cs
index 3763dcd..3f934c9 100644
--- a/OpenSim/Region/DataSnapshot/DataSnapshotManager.cs
+++ b/OpenSim/Region/DataSnapshot/DataSnapshotManager.cs
@@ -337,11 +337,11 @@ namespace OpenSim.Region.DataSnapshot
337 } 337 }
338 catch (WebException) 338 catch (WebException)
339 { 339 {
340 m_log.Warn("[DATASNAPSHOT] Unable to notify " + url); 340 m_log.Warn("[DATASNAPSHOT]: Unable to notify " + url);
341 } 341 }
342 catch (Exception e) 342 catch (Exception e)
343 { 343 {
344 m_log.Warn("[DATASNAPSHOT] Ignoring unknown exception " + e.ToString()); 344 m_log.Warn("[DATASNAPSHOT]: Ignoring unknown exception " + e.ToString());
345 } 345 }
346 byte[] response = new byte[1024]; 346 byte[] response = new byte[1024];
347 // int n = 0; 347 // int n = 0;
@@ -352,11 +352,11 @@ namespace OpenSim.Region.DataSnapshot
352 } 352 }
353 catch (Exception e) 353 catch (Exception e)
354 { 354 {
355 m_log.WarnFormat("[DATASNAPSHOT] Unable to decode reply from data service. Ignoring. {0}", e.StackTrace); 355 m_log.WarnFormat("[DATASNAPSHOT]: Unable to decode reply from data service. Ignoring. {0}", e.StackTrace);
356 } 356 }
357 // This is not quite working, so... 357 // This is not quite working, so...
358 // string responseStr = Encoding.UTF8.GetString(response); 358 // string responseStr = Encoding.UTF8.GetString(response);
359 m_log.Info("[DATASNAPSHOT] data service notified: " + url); 359 m_log.Info("[DATASNAPSHOT]: data service notified: " + url);
360 } 360 }
361 361
362 } 362 }