Skip to content

Commit

Permalink
VACMS-17240 Fix module category on logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
swirtSJW committed Feb 15, 2024
1 parent b78c444 commit 861697c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/content/script-library.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 861697c

Please sign in to comment.