@@ -32,16 +32,16 @@ public override void Flush(ReportAggregates reportAggregates)
32
32
33
33
var source = RazorEngineManager . Instance . Razor . RunCompile ( "LoggerTest" , typeof ( ExtentLoggerReporter ) , this ) ;
34
34
File . WriteAllText ( SavePath + "Index.html" , source ) ;
35
- source = RazorEngineManager . Instance . Razor . RunCompile ( "LoggerDashboard " , typeof ( ExtentLoggerReporter ) , this ) ;
35
+ source = RazorEngineManager . Instance . Razor . RunCompile ( "CommonsDashboard " , typeof ( ExtentLoggerReporter ) , this ) ;
36
36
File . WriteAllText ( SavePath + "Dashboard.html" , source ) ;
37
37
if ( CategoryContext . Context . Count > 0 )
38
38
{
39
- source = RazorEngineManager . Instance . Razor . RunCompile ( "LoggerTag " , typeof ( ExtentLoggerReporter ) , this ) ;
39
+ source = RazorEngineManager . Instance . Razor . RunCompile ( "CommonsTag " , typeof ( ExtentLoggerReporter ) , this ) ;
40
40
File . WriteAllText ( SavePath + "Tag.html" , source ) ;
41
41
}
42
42
if ( ExceptionInfoContext . Context . Count > 0 )
43
43
{
44
- source = RazorEngineManager . Instance . Razor . RunCompile ( "LoggerException " , typeof ( ExtentLoggerReporter ) , this ) ;
44
+ source = RazorEngineManager . Instance . Razor . RunCompile ( "CommonsException " , typeof ( ExtentLoggerReporter ) , this ) ;
45
45
File . WriteAllText ( SavePath + "Exception.html" , source ) ;
46
46
}
47
47
}
@@ -56,13 +56,7 @@ private static void AddTemplates()
56
56
{
57
57
string [ ] templates = new string [ ]
58
58
{
59
- "LoggerDashboard" ,
60
- "LoggerException" ,
61
- "LoggerTag" ,
62
59
"LoggerTest" ,
63
- "Partials.LoggerHead" ,
64
- "Partials.LoggerNav" ,
65
- "Partials.LoggerNavRight" ,
66
60
"LoggerMacro"
67
61
} ;
68
62
TemplateLoadService . LoadTemplate < ILoggerMarker > ( templates ) ;
@@ -71,11 +65,13 @@ private static void AddTemplates()
71
65
{
72
66
"CommonsAttributes" ,
73
67
"CommonsDashboard" ,
74
- "CommonsDashboardScripts" ,
75
68
"CommonsException" ,
69
+ "CommonsHead" ,
76
70
"CommonsInjectCss" ,
77
71
"CommonsInjectJs" ,
78
72
"CommonsMedia" ,
73
+ "CommonsNav" ,
74
+ "CommonsNavRight" ,
79
75
"CommonsRow" ,
80
76
"CommonsTag"
81
77
} ;
0 commit comments