You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
protocol.Log("QA"+protocol.QActionID+"|Output index: "+Convert.ToString(output+1)+" is connected to an input that can't be converted to a number: "+Convert.ToString(connectedInput),LogType.Error,LogLevel.NoLogging);
70
+
protocol.Log($"QA{protocol.QActionID}|Output index: {Convert.ToString(output+1)}is connected to an input that can't be converted to a number: {Convert.ToString(connectedInput)}",LogType.Error,LogLevel.NoLogging);
71
71
returnfalse;
72
72
}
73
73
74
74
if(input<0&&input>displayedInputs)
75
75
{
76
-
protocol.Log("QA"+protocol.QActionID+"|Output index: "+Convert.ToString(output+1)+" is connected to an input that is out of range: "+Convert.ToString(connectedInput)+" maximum known input is "+Convert.ToString(displayedInputs),LogType.Error,LogLevel.NoLogging);
76
+
protocol.Log($"QA{protocol.QActionID}|Output index: {Convert.ToString(output+1)}is connected to an input that is out of range: {Convert.ToString(connectedInput)}maximum known input is {Convert.ToString(displayedInputs)}",LogType.Error,LogLevel.NoLogging);
77
77
returnfalse;
78
78
}
79
79
@@ -87,7 +87,7 @@ private static bool TryGetLock(SLProtocol protocol, object lockedValue, int inde
protocol.Log("QA"+protocol.QActionID+"|Provided locked value "+Convert.ToString(lockedValue)+" can't be converted to a number for "+(isInput?"input ":"output ")+Convert.ToString(index+1),LogType.Error,LogLevel.NoLogging);
90
+
protocol.Log($"QA{protocol.QActionID}|Provided locked value {Convert.ToString(lockedValue)}can't be converted to a number for {(isInput?"input ":"output ")}{Convert.ToString(index+1)}",LogType.Error,LogLevel.NoLogging);
0 commit comments