Skip to content

Commit

Permalink
some new dictionary extensions for diagnostics tracing helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremydmiller committed Aug 26, 2015
1 parent 95a855f commit 552f6fd
Show file tree
Hide file tree
Showing 12 changed files with 365 additions and 329 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using System.Diagnostics;
using System.Linq;
using FubuCore.Logging;
using FubuMVC.Core.Http;
using FubuMVC.Core.Http.Owin;
using FubuMVC.Core.Registration.Nodes;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,7 @@ public interface IChainExecutionLog
void Trace(string description, Action action);
void RecordHeaders(IDictionary<string, object> env);
void RecordBody(IDictionary<string, object> env);

Guid Id { get; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ namespace FubuMVC.Core.Diagnostics.Instrumentation
public class InMemoryExecutionLogStorage : IExecutionLogStorage
{
private readonly IChainExecutionHistory _history;
private readonly PerformanceHistoryQueue _queue;
private readonly IPerformanceHistoryQueue _queue;

public InMemoryExecutionLogStorage(IChainExecutionHistory history, PerformanceHistoryQueue queue)
public InMemoryExecutionLogStorage(IChainExecutionHistory history, IPerformanceHistoryQueue queue)
{
_history = history;
_queue = queue;
Expand Down
4 changes: 1 addition & 3 deletions src/FubuMVC.Core/FubuMVC.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@
<Compile Include="Http\Hosting\AdminRightsException.cs" />
<Compile Include="Http\Hosting\Nowin.cs" />
<Compile Include="Http\Hosting\ReflectionExtensions.cs" />
<Compile Include="Http\Owin\DictionaryExtensions.cs" />
<Compile Include="Registration\ActionlessViewChainSource.cs" />
<Compile Include="Registration\SingletonAttribute.cs" />
<Compile Include="Resources\Conneg\ViewAttachment.cs" />
Expand Down Expand Up @@ -565,7 +564,7 @@
<Compile Include="Http\Cookies\ICookies.cs" />
<Compile Include="Http\Cookies\ICookieValue.cs" />
<Compile Include="Http\Cookies\Segment.cs" />
<Compile Include="Http\CurrentHttpRequestExtensions.cs" />
<Compile Include="Http\HttpRequestExtensions.cs" />
<Compile Include="Http\EtagMatch.cs" />
<Compile Include="Http\FubuMvcRequestData.cs" />
<Compile Include="Http\HeaderValueSource.cs" />
Expand Down Expand Up @@ -960,7 +959,6 @@
<Compile Include="Http\Headers\IHaveHeaders.cs" />
<Compile Include="Http\HttpGeneralHeaders.cs" />
<Compile Include="Http\HttpHeaderNameExtensions.cs" />
<Compile Include="Http\HttpOutputWriterExtensions.cs" />
<Compile Include="Http\HttpRequestHeaders.cs" />
<Compile Include="Http\HttpResponseHeaders.cs" />
<Compile Include="Http\ICurrentChain.cs" />
Expand Down
7 changes: 0 additions & 7 deletions src/FubuMVC.Core/Http/HttpOutputWriterExtensions.cs

This file was deleted.

Loading

0 comments on commit 552f6fd

Please sign in to comment.