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
BaseRuntimeConnectorContextruntimeContext=serviceProvider.GetService(typeof(BaseRuntimeConnectorContext))asBaseRuntimeConnectorContext??thrownewInvalidOperationException("RuntimeConnectorContext is missing from service provider");
96
95
97
96
try
98
97
{
99
-
runtimeContext.ExecutionLogger?.LogInformation($"Entering in [Texl] {ConnectorFunction.LogFunction(nameof(InvokeAsync))} with {LogArguments(args)}");
runtimeContext.ExecutionLogger?.LogInformation($"Entering in [Texl] {ConnectorFunction.LogFunction(nameof(InvokeAsync))} with {LogArguments(invokeInfo.Args)}");
runtimeContext.ExecutionLogger?.LogInformation($"Exiting [Texl] {ConnectorFunction.LogFunction(nameof(InvokeAsync))} returning from {nameof(ConnectorFunction.InvokeInternalAsync)} with {LogFormulaValue(formulaValue)}");
102
101
returnformulaValue;
103
102
}
104
103
catch(Exceptionex)
105
104
{
106
-
runtimeContext.ExecutionLogger?.LogException(ex,$"Exception in [Texl] {ConnectorFunction.LogFunction(nameof(InvokeAsync))} with {LogArguments(args)}{LogException(ex)}");
105
+
runtimeContext.ExecutionLogger?.LogException(ex,$"Exception in [Texl] {ConnectorFunction.LogFunction(nameof(InvokeAsync))} with {LogArguments(invokeInfo.Args)}{LogException(ex)}");
0 commit comments