Some rough hacks to get GridProxy to return information on specific cap requests via the command line GridProxyApp.

Also comments out some noisy http request logging
This commit is contained in:
Justin Clark-Casey
2012-06-02 05:06:24 +01:00
parent 6720d023a6
commit d19f09bdac
3 changed files with 895 additions and 9 deletions

View File

@@ -8,7 +8,9 @@ class ProxyMain
{
ProxyFrame p = new ProxyFrame(args);
ProxyPlugin analyst = new Analyst(p);
analyst.Init();
analyst.Init();
ProxyPlugin capAnalyst = new CapAnalyst(p);
capAnalyst.Init();
p.proxy.Start();
}
}