Update CONTRIBUTING.md
Jack Hammons committed
Jul 11, 2016 at 16:28 UTC
50a3c4db241135790604e6945e374498257b4d70
1 file changed
+36
-1
CONTRIBUTING.md
+36
-1
@@ -74,7 +74,8 @@ access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
74
...
75
```
76
77
-7) Additional information
77
+###7) Additional information
78
+
79
Some bugs require additional information such as scripts to reproduce. Please add to this section.
80
81
If there are files required, email the files to InsiderSupport@microsoft.com with:
@@ -88,3 +89,37 @@ Additional strace logs if the error occurs within a fork. The following command
89
```
90
$ strace -ff -o <outputfile> <command>
91
```
92
+
93
+###8) Detailed Logs
94
+Some bugs will require more detailed logs to help determine the cause. There is a CMD command to start detailed logging and another to stop. The logs are generated locally into the working directory.
95
+
96
+####Start
97
+
98
+```
99
+>logman.exe create trace lxcore_kernel -p {0CD1C309-0878-4515-83DB-749843B3F5C9} -mode 0x00000008 -ft 10:00 -o .\lxcore_kernel.etl -ets
100
+>logman create trace lxcore_adss -p {754E4536-6735-4194-BE81-1374BD2E9B0D} -ft 1:00 -rt -o .\lxcore_adss.etl -ets
101
+>logman create trace lxcore_user -p {D90B9468-67F0-5B3B-42CC-82AC81FFD960} -ft 1:00 -rt -o .\lxcore_user.etl -ets
102
+>logman create trace lxcore_service -p {B99CDB5A-039C-5046-E672-1A0DE0A40211} -ft 1:00 -rt -o .\lxcore_service.etl -ets
103
+```
104
+
105
+####Stop
106
+
107
+(example runs in the C:\temp directory)
108
+
109
+```
110
+>logman stop lxcore_kernel -ets
111
+>logman stop lxcore_adss -ets
112
+>logman stop lxcore_user -ets
113
+>logman stop lxcore_service -ets
114
+```
115
+
116
+####Output
117
+
118
+Files generated are in the directory where the commands above ran:
119
+
120
+```
121
+lxcore_adss.etl
122
+lxcore_kernel.etl
123
+lxcore_service.etl
124
+lxcore_user.etl
125
+```