From 861697cf1ea64aca3ea7b1a50be2d7916c97b07a Mon Sep 17 00:00:00 2001 From: Steve Wirt Date: Wed, 14 Feb 2024 23:14:43 -0500 Subject: [PATCH] VACMS-17240 Fix module category on logging. --- scripts/content/script-library.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/content/script-library.php b/scripts/content/script-library.php index 6363a152b91..12fc589447d 100644 --- a/scripts/content/script-library.php +++ b/scripts/content/script-library.php @@ -349,7 +349,7 @@ function script_library_sandbox_complete(array &$sandbox, $completed_message) { $message = t('Processing... @completed/@total.', $vars) . PHP_EOL; // Log the all finished notice. if ($sandbox['#finished'] === 1) { - Drupal::logger('va_gov_vamc')->log(LogLevel::INFO, $completed_message, $vars); + Drupal::logger('script_library')->log(LogLevel::INFO, $completed_message, $vars); $logged_message = new FormattableMarkup($completed_message, $vars); $message = t('Process completed:') . " {$logged_message}" . PHP_EOL; }