Merge pull request #4 in PEC/pepperdash-simplsharp-core from feature/debugContexts to master

* commit 'd6acc33ad09f22ad76f76d0fd33b9d06048201e4':
  Working on debug contexts
This commit is contained in:
Heath Volmer
2016-12-07 16:29:18 -05:00
2 changed files with 6 additions and 1 deletions

View File

@@ -40,7 +40,7 @@ namespace PepperDash.Core.DebugThings
public DebugContextItem GetOrCreateItem(string contextKey)
{
if (!Items.ContainsKey(contextKey))
Items[contextKey] = new DebugContextItem() { Level = 0 };
Items[contextKey] = new DebugContextItem(this) { Level = 0 };
return Items[contextKey];
}
}
@@ -49,5 +49,10 @@ namespace PepperDash.Core.DebugThings
{
[JsonProperty("level")]
public int Level { get; set; }
public DebugContextItem(DebugContextCollection parent)
{
}
}
}