diff options
author | Jeff Ames | 2008-02-10 01:57:59 +0000 |
---|---|---|
committer | Jeff Ames | 2008-02-10 01:57:59 +0000 |
commit | e207284fefa60637e35405ebc87e5e151bd2eabd (patch) | |
tree | 6e9954502ea44fe8f6327cb65cfd0026c3322578 /OpenSim/Framework/Communications/RestClient | |
parent | Set svn:ignore in OpenSim/Tests. (diff) | |
download | opensim-SC_OLD-e207284fefa60637e35405ebc87e5e151bd2eabd.zip opensim-SC_OLD-e207284fefa60637e35405ebc87e5e151bd2eabd.tar.gz opensim-SC_OLD-e207284fefa60637e35405ebc87e5e151bd2eabd.tar.bz2 opensim-SC_OLD-e207284fefa60637e35405ebc87e5e151bd2eabd.tar.xz |
Clean up logging calls using String.Format explicitly
Diffstat (limited to 'OpenSim/Framework/Communications/RestClient')
-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(); |