mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Use when on throw on error to avoid context loss
This commit is contained in:
@@ -96,15 +96,10 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
// Now process and add the rom
|
// Now process and add the rom
|
||||||
ParseAddHelper(rom, statsOnly);
|
ParseAddHelper(rom, statsOnly);
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
string message = $"'{filename}' - There was an error parsing line {svr.LineNumber} '{svr.CurrentLine}'";
|
string message = $"'{filename}' - There was an error parsing line {svr.LineNumber} '{svr.CurrentLine}'";
|
||||||
logger.Error(ex, message);
|
logger.Error(ex, message);
|
||||||
if (throwOnError)
|
|
||||||
{
|
|
||||||
svr.Dispose();
|
|
||||||
throw new Exception(message, ex);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -171,10 +166,9 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
svw.Dispose();
|
svw.Dispose();
|
||||||
fs.Dispose();
|
fs.Dispose();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Error(ex);
|
logger.Error(ex);
|
||||||
if (throwOnError) throw ex;
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -81,15 +81,10 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
string message = $"'{filename}' - There was an error parsing line {cmpr.LineNumber} '{cmpr.CurrentLine}'";
|
string message = $"'{filename}' - There was an error parsing line {cmpr.LineNumber} '{cmpr.CurrentLine}'";
|
||||||
logger.Error(ex, message);
|
logger.Error(ex, message);
|
||||||
if (throwOnError)
|
|
||||||
{
|
|
||||||
cmpr.Dispose();
|
|
||||||
throw new Exception(message, ex);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -507,10 +502,9 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
cmpw.Dispose();
|
cmpw.Dispose();
|
||||||
fs.Dispose();
|
fs.Dispose();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Error(ex);
|
logger.Error(ex);
|
||||||
if (throwOnError) throw ex;
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -64,15 +64,10 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
string message = $"'{filename}' - There was an error parsing line {cmpr.LineNumber} '{cmpr.CurrentLine}'";
|
string message = $"'{filename}' - There was an error parsing line {cmpr.LineNumber} '{cmpr.CurrentLine}'";
|
||||||
logger.Error(ex, message);
|
logger.Error(ex, message);
|
||||||
if (throwOnError)
|
|
||||||
{
|
|
||||||
cmpr.Dispose();
|
|
||||||
throw new Exception(message, ex);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -334,10 +329,9 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
cmpw.Dispose();
|
cmpw.Dispose();
|
||||||
fs.Dispose();
|
fs.Dispose();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Error(ex);
|
logger.Error(ex);
|
||||||
if (throwOnError) throw ex;
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -87,15 +87,10 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
// Now process and add the rom
|
// Now process and add the rom
|
||||||
ParseAddHelper(rom, statsOnly);
|
ParseAddHelper(rom, statsOnly);
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
string message = $"'{filename}' - There was an error parsing line {svr.LineNumber} '{svr.CurrentLine}'";
|
string message = $"'{filename}' - There was an error parsing line {svr.LineNumber} '{svr.CurrentLine}'";
|
||||||
logger.Error(ex, message);
|
logger.Error(ex, message);
|
||||||
if (throwOnError)
|
|
||||||
{
|
|
||||||
svr.Dispose();
|
|
||||||
throw new Exception(message, ex);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -159,10 +154,9 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
svw.Dispose();
|
svw.Dispose();
|
||||||
fs.Dispose();
|
fs.Dispose();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Error(ex);
|
logger.Error(ex);
|
||||||
if (throwOnError) throw ex;
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -88,15 +88,10 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
// Now process and add the rom
|
// Now process and add the rom
|
||||||
ParseAddHelper(rom, statsOnly);
|
ParseAddHelper(rom, statsOnly);
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
string message = $"'{filename}' - There was an error parsing at position {sr.BaseStream.Position}";
|
string message = $"'{filename}' - There was an error parsing at position {sr.BaseStream.Position}";
|
||||||
logger.Error(ex, message);
|
logger.Error(ex, message);
|
||||||
if (throwOnError)
|
|
||||||
{
|
|
||||||
sr.Dispose();
|
|
||||||
throw new Exception(message, ex);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -160,10 +155,9 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
svw.Dispose();
|
svw.Dispose();
|
||||||
fs.Dispose();
|
fs.Dispose();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Error(ex);
|
logger.Error(ex);
|
||||||
if (throwOnError) throw ex;
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -244,15 +244,10 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
string message = $"'{filename}' - There was an error parsing at position {sr.BaseStream.Position}";
|
string message = $"'{filename}' - There was an error parsing at position {sr.BaseStream.Position}";
|
||||||
logger.Error(ex, message);
|
logger.Error(ex, message);
|
||||||
if (throwOnError)
|
|
||||||
{
|
|
||||||
sr.Dispose();
|
|
||||||
throw new Exception(message, ex);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -323,10 +318,9 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
sw.Dispose();
|
sw.Dispose();
|
||||||
fs.Dispose();
|
fs.Dispose();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Error(ex);
|
logger.Error(ex);
|
||||||
if (throwOnError) throw ex;
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -254,14 +254,9 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Warning(ex, $"Exception found while parsing '{filename}'");
|
logger.Warning(ex, $"Exception found while parsing '{filename}'");
|
||||||
if (throwOnError)
|
|
||||||
{
|
|
||||||
xtr.Dispose();
|
|
||||||
throw ex;
|
|
||||||
}
|
|
||||||
|
|
||||||
// For XML errors, just skip the affected node
|
// For XML errors, just skip the affected node
|
||||||
xtr?.Read();
|
xtr?.Read();
|
||||||
@@ -1416,10 +1411,9 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
xtw.Dispose();
|
xtw.Dispose();
|
||||||
fs.Dispose();
|
fs.Dispose();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Error(ex);
|
logger.Error(ex);
|
||||||
if (throwOnError) throw ex;
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -208,14 +208,9 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Warning(ex, $"Exception found while parsing '{filename}'");
|
logger.Warning(ex, $"Exception found while parsing '{filename}'");
|
||||||
if (throwOnError)
|
|
||||||
{
|
|
||||||
xtr.Dispose();
|
|
||||||
throw ex;
|
|
||||||
}
|
|
||||||
|
|
||||||
// For XML errors, just skip the affected node
|
// For XML errors, just skip the affected node
|
||||||
xtr?.Read();
|
xtr?.Read();
|
||||||
@@ -848,10 +843,9 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
xtw.Dispose();
|
xtw.Dispose();
|
||||||
fs.Dispose();
|
fs.Dispose();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Error(ex);
|
logger.Error(ex);
|
||||||
if (throwOnError) throw ex;
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -80,10 +80,9 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
sw.Dispose();
|
sw.Dispose();
|
||||||
fs.Dispose();
|
fs.Dispose();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Error(ex);
|
logger.Error(ex);
|
||||||
if (throwOnError) throw ex;
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -78,14 +78,9 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Warning(ex, $"Exception found while parsing '{filename}'");
|
logger.Warning(ex, $"Exception found while parsing '{filename}'");
|
||||||
if (throwOnError)
|
|
||||||
{
|
|
||||||
xtr.Dispose();
|
|
||||||
throw ex;
|
|
||||||
}
|
|
||||||
|
|
||||||
// For XML errors, just skip the affected node
|
// For XML errors, just skip the affected node
|
||||||
xtr?.Read();
|
xtr?.Read();
|
||||||
@@ -729,10 +724,9 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
xtw.Dispose();
|
xtw.Dispose();
|
||||||
fs.Dispose();
|
fs.Dispose();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Error(ex);
|
logger.Error(ex);
|
||||||
if (throwOnError) throw ex;
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -94,14 +94,9 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Warning(ex, $"Exception found while parsing '{filename}'");
|
logger.Warning(ex, $"Exception found while parsing '{filename}'");
|
||||||
if (throwOnError)
|
|
||||||
{
|
|
||||||
xtr.Dispose();
|
|
||||||
throw ex;
|
|
||||||
}
|
|
||||||
|
|
||||||
// For XML errors, just skip the affected node
|
// For XML errors, just skip the affected node
|
||||||
xtr?.Read();
|
xtr?.Read();
|
||||||
@@ -610,10 +605,9 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
xtw.Dispose();
|
xtw.Dispose();
|
||||||
fs.Dispose();
|
fs.Dispose();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Error(ex);
|
logger.Error(ex);
|
||||||
if (throwOnError) throw ex;
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -77,15 +77,10 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
string message = $"'{filename}' - There was an error parsing line {ir.LineNumber} '{ir.CurrentLine}'";
|
string message = $"'{filename}' - There was an error parsing line {ir.LineNumber} '{ir.CurrentLine}'";
|
||||||
logger.Error(ex, message);
|
logger.Error(ex, message);
|
||||||
if (throwOnError)
|
|
||||||
{
|
|
||||||
ir.Dispose();
|
|
||||||
throw new Exception(message, ex);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ir.Dispose();
|
ir.Dispose();
|
||||||
@@ -424,10 +419,9 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
iw.Dispose();
|
iw.Dispose();
|
||||||
fs.Dispose();
|
fs.Dispose();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Error(ex);
|
logger.Error(ex);
|
||||||
if (throwOnError) throw ex;
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -71,10 +71,9 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Warning($"Exception found while parsing '{filename}': {ex}");
|
logger.Warning($"Exception found while parsing '{filename}': {ex}");
|
||||||
if (throwOnError) throw ex;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
jtr.Close();
|
jtr.Close();
|
||||||
@@ -404,10 +403,9 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
jtw.Close();
|
jtw.Close();
|
||||||
fs.Dispose();
|
fs.Dispose();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Error(ex);
|
logger.Error(ex);
|
||||||
if (throwOnError) throw ex;
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -76,14 +76,9 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Warning(ex, $"Exception found while parsing '{filename}'");
|
logger.Warning(ex, $"Exception found while parsing '{filename}'");
|
||||||
if (throwOnError)
|
|
||||||
{
|
|
||||||
xtr.Dispose();
|
|
||||||
throw ex;
|
|
||||||
}
|
|
||||||
|
|
||||||
// For XML errors, just skip the affected node
|
// For XML errors, just skip the affected node
|
||||||
xtr?.Read();
|
xtr?.Read();
|
||||||
@@ -253,10 +248,9 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
xtw.Dispose();
|
xtw.Dispose();
|
||||||
fs.Dispose();
|
fs.Dispose();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Error(ex);
|
logger.Error(ex);
|
||||||
if (throwOnError) throw ex;
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -104,15 +104,10 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
ParseAddHelper(datItem, statsOnly);
|
ParseAddHelper(datItem, statsOnly);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
string message = $"'{filename}' - There was an error parsing line {svr.LineNumber} '{svr.CurrentLine}'";
|
string message = $"'{filename}' - There was an error parsing line {svr.LineNumber} '{svr.CurrentLine}'";
|
||||||
logger.Error(ex, message);
|
logger.Error(ex, message);
|
||||||
if (throwOnError)
|
|
||||||
{
|
|
||||||
svr.Dispose();
|
|
||||||
throw new Exception(message, ex);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -179,10 +174,9 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
svw.Dispose();
|
svw.Dispose();
|
||||||
fs.Dispose();
|
fs.Dispose();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Error(ex);
|
logger.Error(ex);
|
||||||
if (throwOnError) throw ex;
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -144,14 +144,9 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Warning(ex, $"Exception found while parsing '{filename}'");
|
logger.Warning(ex, $"Exception found while parsing '{filename}'");
|
||||||
if (throwOnError)
|
|
||||||
{
|
|
||||||
xtr.Dispose();
|
|
||||||
throw ex;
|
|
||||||
}
|
|
||||||
|
|
||||||
// For XML errors, just skip the affected node
|
// For XML errors, just skip the affected node
|
||||||
xtr?.Read();
|
xtr?.Read();
|
||||||
@@ -657,10 +652,9 @@ namespace SabreTools.DatFiles.Formats
|
|||||||
xtw.Dispose();
|
xtw.Dispose();
|
||||||
fs.Dispose();
|
fs.Dispose();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Error(ex);
|
logger.Error(ex);
|
||||||
if (throwOnError) throw ex;
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -79,10 +79,9 @@ namespace SabreTools.DatTools
|
|||||||
if (cleaner?.KeepEmptyGames == false)
|
if (cleaner?.KeepEmptyGames == false)
|
||||||
datFile.Items.ClearEmpty();
|
datFile.Items.ClearEmpty();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Error(ex);
|
logger.Error(ex);
|
||||||
if (throwOnError) throw ex;
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -168,10 +167,9 @@ namespace SabreTools.DatTools
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Error(ex);
|
logger.Error(ex);
|
||||||
if (throwOnError) throw ex;
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -242,10 +240,9 @@ namespace SabreTools.DatTools
|
|||||||
datFile.Items[key] = items;
|
datFile.Items[key] = items;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Error(ex);
|
logger.Error(ex);
|
||||||
if (throwOnError) throw ex;
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -291,10 +288,9 @@ namespace SabreTools.DatTools
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Error(ex);
|
logger.Error(ex);
|
||||||
if (throwOnError) throw ex;
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -388,10 +384,9 @@ namespace SabreTools.DatTools
|
|||||||
datFile.Items.AddRange(key, newItems);
|
datFile.Items.AddRange(key, newItems);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Warning(ex.ToString());
|
logger.Warning(ex.ToString());
|
||||||
if (throwOnError) throw ex;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -108,10 +108,9 @@ namespace SabreTools.DatTools
|
|||||||
var parsingDatFile = DatFile.Create(currentPathFormat, datFile, quotes);
|
var parsingDatFile = DatFile.Create(currentPathFormat, datFile, quotes);
|
||||||
parsingDatFile?.ParseFile(currentPath, indexId, keep, statsOnly: statsOnly, throwOnError: throwOnError);
|
parsingDatFile?.ParseFile(currentPath, indexId, keep, statsOnly: statsOnly, throwOnError: throwOnError);
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Error(ex, $"Error with file '{currentPath}'");
|
logger.Error(ex, $"Error with file '{currentPath}'");
|
||||||
if (throwOnError) throw ex;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -83,18 +83,16 @@ namespace SabreTools.DatTools
|
|||||||
{
|
{
|
||||||
DatFile.Create(datFormat, datFile, quotes)?.WriteToFile(outfile, ignoreblanks, throwOnError);
|
DatFile.Create(datFormat, datFile, quotes)?.WriteToFile(outfile, ignoreblanks, throwOnError);
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Error(ex, $"Datfile {outfile} could not be written out");
|
logger.Error(ex, $"Datfile {outfile} could not be written out");
|
||||||
if (throwOnError) throw ex;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (!throwOnError)
|
||||||
{
|
{
|
||||||
logger.Error(ex);
|
logger.Error(ex);
|
||||||
if (throwOnError) throw ex;
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -258,11 +258,10 @@ namespace SabreTools.Logging
|
|||||||
_log.WriteLine((AppendPrefix ? $"{loglevel} - {DateTime.Now} - " : string.Empty) + output);
|
_log.WriteLine((AppendPrefix ? $"{loglevel} - {DateTime.Now} - " : string.Empty) + output);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex) when (ThrowOnError)
|
||||||
{
|
{
|
||||||
Console.WriteLine(ex);
|
Console.WriteLine(ex);
|
||||||
Console.WriteLine("Could not write to log file!");
|
Console.WriteLine("Could not write to log file!");
|
||||||
if (ThrowOnError) throw ex;
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user