mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-20 16:06:50 +00:00
Merge branch 'main' into mc-messenger-improvements
This commit is contained in:
commit
5120b2b574
11 changed files with 279 additions and 328 deletions
|
|
@ -203,10 +203,18 @@ namespace PepperDash.Essentials.Touchpanel
|
|||
this.csSubnetMask = IPAddress.Parse(csSubnetMask);
|
||||
this.csIpAddress = IPAddress.Parse(csIpAddress);
|
||||
}
|
||||
catch
|
||||
catch (ArgumentException)
|
||||
{
|
||||
Debug.LogInformation("This processor does not have a CS LAN", this);
|
||||
}
|
||||
catch (InvalidOperationException)
|
||||
{
|
||||
Debug.LogInformation("This processor does not have a CS LAN", this);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Debug.LogError($"Unexpected exception when checking CS LAN: {ex}", this);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue