Skip to content

Commit

Permalink
Add context to deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
loganharbour committed Dec 1, 2024
1 parent 1e59aad commit f1c9324
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion framework/include/base/MooseBaseErrorInterface.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ class MooseBaseErrorInterface : public ConsoleStreamInterface
template <typename... Args>
void mooseDeprecated(Args &&... args) const
{
moose::internal::mooseDeprecatedStream(_console, false, true, std::forward<Args>(args)...);
moose::internal::mooseDeprecatedStream(
_console, false, true, _moose_base.errorPrefix("deprecation"), std::forward<Args>(args)...);
}

template <typename... Args>
Expand Down

0 comments on commit f1c9324

Please sign in to comment.