diff options
author | Dan Volchek <volchek2@illinois.edu> | 2018-04-17 21:46:30 -0500 |
---|---|---|
committer | Dan Volchek <volchek2@illinois.edu> | 2018-04-17 21:46:30 -0500 |
commit | 73b75c628666f52120975ed70e572bba0e2810c3 (patch) | |
tree | ef87a2d1a1ec351899fb37ccd29cc14bd0681b45 /src/SMAPI/Program.cs | |
parent | bb2c52386015829c161a56d418f3795335559d8a (diff) | |
download | SMAPI-73b75c628666f52120975ed70e572bba0e2810c3.tar.gz SMAPI-73b75c628666f52120975ed70e572bba0e2810c3.tar.bz2 SMAPI-73b75c628666f52120975ed70e572bba0e2810c3.zip |
log user input to log file
Diffstat (limited to 'src/SMAPI/Program.cs')
-rw-r--r-- | src/SMAPI/Program.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/SMAPI/Program.cs b/src/SMAPI/Program.cs index f70efb89..063707af 100644 --- a/src/SMAPI/Program.cs +++ b/src/SMAPI/Program.cs @@ -444,6 +444,9 @@ namespace StardewModdingAPI if (string.IsNullOrWhiteSpace(input)) continue; + // write input to log file + this.Monitor.LogUserInputToFile(input); + // parse input try { |