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
environmentSettings.Host.Logger.LogDebug("[{macro}]: '{var}': source value '{source}' is not used, because it is equal to default value '{default}'.",nameof(CoalesceMacro),config.VariableName,currentSourceValue,config.DefaultValue);
environmentSettings.Host.Logger.LogDebug("[{macro}]: Assigned variable '{var}' to fallback value '{value}'.",nameof(CoalesceMacro),config.VariableName,currentFallbackValue);
environmentSettings.Host.Logger.LogDebug("[{macro}]: Assigned variable '{var}' to default value '{value}'.",nameof(CoalesceMacro),config.VariableName,config.DefaultValue);
36
-
return;
37
-
}
38
39
environmentSettings.Host.Logger.LogDebug("[{macro}]: Variable '{var}' was not assigned, neither source nor fallback variable was found.",nameof(CoalesceMacro),config.VariableName);
0 commit comments