forked from microsoft/testfx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTraceLogger.cs
71 lines (65 loc) · 2.11 KB
/
TraceLogger.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices;
using Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface;
using Microsoft.VisualStudio.TestPlatform.ObjectModel;
/// <summary>
/// A service to log any trace messages from the adapter that would be shown in *.TpTrace files.
/// </summary>
public class AdapterTraceLogger : IAdapterTraceLogger
{
/// <summary>
/// Log an error in a given format.
/// </summary>
/// <param name="format"> The format. </param>
/// <param name="args"> The args. </param>
public void LogError(string format, params object[] args)
{
#if !WINDOWS_UWP && !WIN_UI
if (EqtTrace.IsErrorEnabled)
{
EqtTrace.Error(PrependAdapterName(format), args);
}
#else
EqtTrace.ErrorIf(EqtTrace.IsErrorEnabled, format, args);
#endif
}
/// <summary>
/// Log a warning in a given format.
/// </summary>
/// <param name="format"> The format. </param>
/// <param name="args"> The args. </param>
public void LogWarning(string format, params object[] args)
{
#if !WINDOWS_UWP && !WIN_UI
if (EqtTrace.IsWarningEnabled)
{
EqtTrace.Warning(PrependAdapterName(format), args);
}
#else
EqtTrace.WarningIf(EqtTrace.IsWarningEnabled, format, args);
#endif
}
/// <summary>
/// Log an information message in a given format.
/// </summary>
/// <param name="format"> The format. </param>
/// <param name="args"> The args. </param>
public void LogInfo(string format, params object[] args)
{
#if !WINDOWS_UWP && !WIN_UI
if (EqtTrace.IsInfoEnabled)
{
EqtTrace.Info(PrependAdapterName(format), args);
}
#else
EqtTrace.InfoIf(EqtTrace.IsInfoEnabled, format, args);
#endif
}
#if !WINDOWS_UWP && !WIN_UI
private static string PrependAdapterName(string format)
{
return $"MSTest - {format}";
}
#endif
}