diff --git a/BasicNodes/File/VariableExists.cs b/BasicNodes/File/VariableExists.cs index d52d7ab5..8e26f76f 100644 --- a/BasicNodes/File/VariableExists.cs +++ b/BasicNodes/File/VariableExists.cs @@ -41,16 +41,16 @@ public class VariableExists: Node if (args.Variables.TryGetValue(variable, out var value) == false) { - args.Logger?.ILog("Variable does not exist"); + args.Logger?.ILog($"Variable '{variable}' does not exist"); return 2; } if (value == null) { - args.Logger?.ILog("Variable exists but is null"); + args.Logger?.ILog($"Variable '{variable}' exists but is null"); return 2; } - args.Logger?.ILog("Variable exists and is not null"); + args.Logger?.ILog($"Variable '{variable}' exists and is not null"); return 1; } } \ No newline at end of file diff --git a/FileFlows.Plugin.dll b/FileFlows.Plugin.dll index 020a8da6..af7f11bf 100644 Binary files a/FileFlows.Plugin.dll and b/FileFlows.Plugin.dll differ diff --git a/FileFlows.Plugin.pdb b/FileFlows.Plugin.pdb index f5e1a6fd..550f1534 100644 Binary files a/FileFlows.Plugin.pdb and b/FileFlows.Plugin.pdb differ