• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisión29a8ad5ead2a1bf5faef7db84d5dd93d5e56769f (tree)
Tiempo2020-05-10 21:14:26
Autoryyagi <yyagi.dtxmania@gmai...>
Commiteryyagi

Log Message

#xxxxx SystemNameをDTXManiaLog.txtに出力しないよう修正。(thanks to mowmowさん)

Cambiar Resumen

  • delete: "DTXMania/\343\202\263\343\203\274\343\203\211/\345\205\250\344\275\223/CPutSystemLog.cs"

Diferencia incremental

--- "a/DTXMania/\343\202\263\343\203\274\343\203\211/\345\205\250\344\275\223/CPutSystemLog.cs"
+++ "b/DTXMania/\343\202\263\343\203\274\343\203\211/\345\205\250\344\275\223/CPutSystemLog.cs"
@@ -127,7 +127,10 @@ namespace DTXMania
127127
128128 foreach (PropertyData property in mo.Properties)
129129 {
130- Trace.TraceInformation("{0}:{1}", property.Name, property.Value);
130+ if (property.Name != "SystemName") // avoid to show systemname, because it's privacy info.
131+ {
132+ Trace.TraceInformation("{0}:{1}", property.Name, property.Value);
133+ }
131134 }
132135 });
133136