From 3a1403435038f19542e94c8240141f9099588249 Mon Sep 17 00:00:00 2001 From: HaveAGitGat Date: Tue, 21 May 2024 09:03:13 +0000 Subject: [PATCH] Apply auto-build changes --- .../file/compareFileSize/1.0.0/index.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/FlowPlugins/CommunityFlowPlugins/file/compareFileSize/1.0.0/index.js b/FlowPlugins/CommunityFlowPlugins/file/compareFileSize/1.0.0/index.js index e403445..4649b88 100644 --- a/FlowPlugins/CommunityFlowPlugins/file/compareFileSize/1.0.0/index.js +++ b/FlowPlugins/CommunityFlowPlugins/file/compareFileSize/1.0.0/index.js @@ -38,12 +38,18 @@ var plugin = function (args) { args.inputs = lib.loadDefaultValues(args.inputs, details); var outputNumber = 1; if (args.inputFileObj.file_size < args.originalLibraryFile.file_size) { + args.jobLog("Working of size ".concat(args.inputFileObj.file_size) + + " is smaller than original file of size ".concat(args.originalLibraryFile.file_size)); outputNumber = 1; } else if (args.inputFileObj.file_size === args.originalLibraryFile.file_size) { + args.jobLog("Working of size ".concat(args.inputFileObj.file_size) + + " is same size as original file of size ".concat(args.originalLibraryFile.file_size)); outputNumber = 2; } else if (args.inputFileObj.file_size > args.originalLibraryFile.file_size) { + args.jobLog("Working of size ".concat(args.inputFileObj.file_size) + + " is larger than original file of size ".concat(args.originalLibraryFile.file_size)); outputNumber = 3; } return {