Revision: 759
http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=759&view=rev
Author: gregmac45
Date: 2007-07-24 16:00:42 -0700 (Tue, 24 Jul 2007)
Log Message:
-----------
replaced log.write with log.info
Modified Paths:
--------------
trunk/plugins/OnlineVideos/Source/OnlineVideos/GrouperUtil.cs
Modified: trunk/plugins/OnlineVideos/Source/OnlineVideos/GrouperUtil.cs
===================================================================
--- trunk/plugins/OnlineVideos/Source/OnlineVideos/GrouperUtil.cs 2007-07-24 20:20:46 UTC (rev 758)
+++ trunk/plugins/OnlineVideos/Source/OnlineVideos/GrouperUtil.cs 2007-07-24 23:00:42 UTC (rev 759)
@@ -22,12 +22,12 @@
public override String getUrl(String fsId)
{
- Log.Write("doc id={0}", fsId);
+ Log.Info("doc id={0}", fsId);
String lsHtml = getHTMLData("http://grouper.com/rss/flv.ashx?id=" + fsId);
String lsUrl = String.Empty;
Regex loRegex = new Regex("<media flvUrl=\"([^\"]*)");
lsUrl = loRegex.Match(lsHtml).Groups[1].Value;
- Log.Write("URL:{0}",lsUrl);
+ Log.Info("URL:{0}",lsUrl);
return lsUrl;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|