diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-07-03 17:49:38 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-07-03 17:49:38 +0300 |
| commit | 33a7f16d7f6f7d0be58fb5ac77dcb84934114d48 (patch) | |
| tree | a5c95ab604286fba833d2d5cd4bd2f32d79e69fe /Software/Visual_Studio/Tango.Settings | |
| parent | 39c49d522d68a591d60aecdeab8149f1bb04415c (diff) | |
| download | Tango-33a7f16d7f6f7d0be58fb5ac77dcb84934114d48.tar.gz Tango-33a7f16d7f6f7d0be58fb5ac77dcb84934114d48.zip | |
Embedded StubsView in Stubs UI.
Diffstat (limited to 'Software/Visual_Studio/Tango.Settings')
| -rw-r--r-- | Software/Visual_Studio/Tango.Settings/SettingsManager.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Settings/SettingsManager.cs b/Software/Visual_Studio/Tango.Settings/SettingsManager.cs index 34ac2ddfe..cd8b97c92 100644 --- a/Software/Visual_Studio/Tango.Settings/SettingsManager.cs +++ b/Software/Visual_Studio/Tango.Settings/SettingsManager.cs @@ -63,6 +63,11 @@ namespace Tango.Settings { TypeNameHandling = TypeNameHandling.All, Formatting = Formatting.Indented, + Error = (sender, args) => + { + args.ErrorContext.Handled = true; + Logging.LogManager.Default.Log(args.ErrorContext.Error.Message); + } }; _jsonSettings.Converters.Add(new StringEnumConverter(false)); |
