diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2021-03-10 17:49:06 +0000 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2021-03-10 17:49:06 +0000 |
commit | 92a17bf53b33050402c292c22614b361dba0e292 (patch) | |
tree | 59a0c5bb8331fa2f12f50c490c14c7edaf8deb19 /indra/llui/lluiusage.h | |
parent | 89bd4269018fa5a36a15eac8d2c3f99674d18b2d (diff) |
SL-14862 - tab logging
Diffstat (limited to 'indra/llui/lluiusage.h')
-rw-r--r-- | indra/llui/lluiusage.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/indra/llui/lluiusage.h b/indra/llui/lluiusage.h index 956e184edc..df7360c210 100644 --- a/indra/llui/lluiusage.h +++ b/indra/llui/lluiusage.h @@ -40,13 +40,16 @@ public: public: static std::string sanitized(const std::string& s); void setLLSDNested(LLSD& sd, const std::string& path, S32 max_elts, S32 val) const; - void logFloater(const std::string& floater); void logCommand(const std::string& command); + void logFloater(const std::string& floater); + void logPanel(const std::string& p); void logWidget(const std::string& w); LLSD asLLSD() const; + void clear(); private: - std::map<std::string,U32> mFloaterCounts; std::map<std::string,U32> mCommandCounts; + std::map<std::string,U32> mFloaterCounts; + std::map<std::string,U32> mPanelCounts; std::map<std::string,U32> mWidgetCounts; }; |