-
-
Notifications
You must be signed in to change notification settings - Fork 477
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge changes from Profiler so we can share the code easily
- Loading branch information
Showing
6 changed files
with
352 additions
and
354 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
using System.Management.Automation; | ||
using System.Management.Automation.Language; | ||
|
||
namespace Pester.Tracing | ||
# if PESTER | ||
namespace Pester.Tracing; | ||
#else | ||
namespace Profiler; | ||
#endif | ||
|
||
public interface ITracer | ||
{ | ||
public interface ITracer | ||
{ | ||
void Trace(string message, IScriptExtent extent, ScriptBlock scriptBlock, int level); | ||
} | ||
void Trace(string message, IScriptExtent extent, ScriptBlock scriptBlock, int level, string functionName, string moduleName); | ||
} |
Oops, something went wrong.