diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2021-07-15 18:37:02 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2021-09-06 23:49:00 +0300 |
commit | 0bcf150d4e25f701fbed7ea0141fb580d698ee4d (patch) | |
tree | 2288841dcd036e63740eb72be44d90ad0a969356 /indra/newview | |
parent | 396c8bb9fe52e86a857a49020bc0feb33503a6a1 (diff) |
SL-443 keybindings: Do not error on unknown function
It is likely be from newer viewer / Preparations for SL-443 deloyment.
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llviewerinput.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llviewerinput.cpp b/indra/newview/llviewerinput.cpp index c0eaa88f54..f269be035e 100644 --- a/indra/newview/llviewerinput.cpp +++ b/indra/newview/llviewerinput.cpp @@ -1070,7 +1070,7 @@ BOOL LLViewerInput::bindKey(const S32 mode, const KEY key, const MASK mask, cons if (!function) { - LL_ERRS() << "Can't bind key to function " << function_name << ", no function with this name found" << LL_ENDL; + LL_WARNS() << "Can't bind key to function " << function_name << ", no function with this name found" << LL_ENDL; return FALSE; } @@ -1112,7 +1112,7 @@ BOOL LLViewerInput::bindMouse(const S32 mode, const EMouseClickType mouse, const if (!function) { - LL_ERRS() << "Can't bind key to function " << function_name << ", no function with this name found" << LL_ENDL; + LL_WARNS() << "Can't bind mouse key to function " << function_name << ", no function with this name found" << LL_ENDL; return FALSE; } |