Skip to content

Commit

Permalink
CustomVarRendererHook: Log an exception's message and location
Browse files Browse the repository at this point in the history
fixes #1054
  • Loading branch information
nilmerg committed Nov 4, 2024
1 parent 4806939 commit 686086a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions library/Icingadb/Hook/CustomVarRendererHook.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ final public static function prepareForObject(Model $object): Closure
$hooks[] = $hook;
}
} catch (Throwable $e) {
Logger::error('Failed to load hook %s:', get_class($hook), $e);
Logger::error('Failed to load hook %s: %s', get_class($hook), $e);
Logger::debug($e);
}
}

Expand All @@ -85,7 +86,8 @@ final public static function prepareForObject(Model $object): Closure
$renderedValue = $hook->renderCustomVarValue($key, $value);
$group = $hook->identifyCustomVarGroup($key);
} catch (Throwable $e) {
Logger::error('Failed to use hook %s:', get_class($hook), $e);
Logger::error('Failed to use hook %s: %s', get_class($hook), $e);
Logger::debug($e);
continue;
}

Expand Down

0 comments on commit 686086a

Please sign in to comment.