c# - Castle Windsor - slow debugging -
i have started working on asp.net mvc project uses castle windsor. problem is, each time try debug application, part of code takes couple of minutes execute:
protected override icontroller getcontrollerinstance( requestcontext requestcontext, type controllertype) { if (controllertype == null) { throw new httpexception(404, "some error"); } // takes long... return (icontroller)kernel.resolve(controllertype); } if encountered similar situation , share solution this, br great, since situation practically hold me using debugger...
i'm using vs2012, project on .net framework 4.5 , version of castle.core , castle.windsor 3.1
edit: ok, found problem not related container, actualy matter of nlog settings - in nlog.config had internalloglevel set "trace" - changed level "error" , runs smoothly. sorry taking time anybody, trying solve issue...
Comments
Post a Comment