File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ static void Main(string[] args) {
14
14
private static void _demoDumpAndLog ( ) {
15
15
Console . Write ( "Press enter key to dump demo data and write it to HDD." ) ;
16
16
Console . ReadLine ( ) ;
17
+ Console . WriteLine ( ) ;
17
18
18
19
var demoObject = new Dictionary < string , object > ( ) {
19
20
{ "clark" , new {
@@ -35,21 +36,29 @@ private static void _demoDumpAndLog() {
35
36
36
37
Debug . Dump ( demoObject ) ;
37
38
Debug . Log ( demoObject ) ;
39
+
40
+ Console . WriteLine ( ) ;
41
+ Console . WriteLine ( ) ;
38
42
}
39
43
private static void _demoException ( ) {
40
44
Console . Write ( "Press enter key to dump catched demo exception and write it to HDD." ) ;
41
45
Console . ReadLine ( ) ;
46
+ Console . WriteLine ( ) ;
42
47
43
48
try {
44
49
throw new Exception ( "Demo exception:-)" ) ;
45
50
} catch ( Exception ex ) {
46
51
Debug . Dump ( ex ) ;
47
52
Debug . Log ( ex ) ;
48
53
}
54
+
55
+ Console . WriteLine ( ) ;
56
+ Console . WriteLine ( ) ;
49
57
}
50
58
private static void _runTests ( ) {
51
59
Console . Write ( "Pres enter key to start duping test objects." ) ;
52
60
Console . ReadLine ( ) ;
61
+ Console . WriteLine ( ) ;
53
62
54
63
var dlTest = new Tests . DumpingAndLoging ( ) ;
55
64
dlTest . TestAll ( ) ;
You can’t perform that action at this time.
0 commit comments