From 40a80364720ee5020dd5a52e9d341ef7d62a893f Mon Sep 17 00:00:00 2001 From: Patrick Fic Date: Thu, 2 Oct 2025 13:26:12 -0700 Subject: [PATCH] Adjust logging statements. --- server/accounting/pbs/pbs-job-export.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/server/accounting/pbs/pbs-job-export.js b/server/accounting/pbs/pbs-job-export.js index 4c40682db..feb3dc064 100644 --- a/server/accounting/pbs/pbs-job-export.js +++ b/server/accounting/pbs/pbs-job-export.js @@ -104,14 +104,13 @@ exports.PbsSelectedCustomer = async function PbsSelectedCustomer(socket, selecte CdkBase.createLogEvent( socket, "INFO", - `Contact and Vehicle updates disabled. Skipping to accounting data insert.` + `Contact and Vehicle updates disabled. Querying data and skipping to accounting data insert.` ); //Must query for records to insert $0 RO. if (!socket.ownerRef) { const ownerRef = (await QueryCustomerBycodeFromDms(socket, selectedCustomerId))?.[0]; socket.ownerRef = ownerRef; } - CdkBase.createLogEvent(socket, "INFO", `Upserting vehicle information to DMS for ${socket.JobData.v_vin}`); const vehicleRef = await GetVehicleData(socket, socket.ownerRef?.ReferenceId || socket.selectedCustomerId); socket.vehicleRef = vehicleRef; }