diff options
Diffstat (limited to 'OpenSim/Framework/Communications/RestClient/RestClient.cs')
-rw-r--r-- | OpenSim/Framework/Communications/RestClient/RestClient.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/Communications/RestClient/RestClient.cs b/OpenSim/Framework/Communications/RestClient/RestClient.cs index f968c9a..bf81565 100644 --- a/OpenSim/Framework/Communications/RestClient/RestClient.cs +++ b/OpenSim/Framework/Communications/RestClient/RestClient.cs | |||
@@ -240,7 +240,7 @@ namespace OpenSim.Framework.Communications | |||
240 | } | 240 | } |
241 | } | 241 | } |
242 | realuri = sb.ToString(); | 242 | realuri = sb.ToString(); |
243 | m_log.Info(String.Format("[REST]: RestURL: {0}", realuri)); | 243 | m_log.InfoFormat("[REST]: RestURL: {0}", realuri); |
244 | return new Uri(sb.ToString()); | 244 | return new Uri(sb.ToString()); |
245 | } | 245 | } |
246 | 246 | ||
@@ -376,8 +376,8 @@ namespace OpenSim.Framework.Communications | |||
376 | _asyncException = null; | 376 | _asyncException = null; |
377 | _request.ContentLength = src.Length; | 377 | _request.ContentLength = src.Length; |
378 | 378 | ||
379 | m_log.Info(String.Format("[REST]: Request Length {0}", _request.ContentLength)); | 379 | m_log.InfoFormat("[REST]: Request Length {0}", _request.ContentLength); |
380 | m_log.Info(String.Format("[REST]: Sending Web Request {0}", buildUri())); | 380 | m_log.InfoFormat("[REST]: Sending Web Request {0}", buildUri()); |
381 | src.Seek(0, SeekOrigin.Begin); | 381 | src.Seek(0, SeekOrigin.Begin); |
382 | m_log.Info("[REST]: Seek is ok"); | 382 | m_log.Info("[REST]: Seek is ok"); |
383 | Stream dst = _request.GetRequestStream(); | 383 | Stream dst = _request.GetRequestStream(); |