summaryrefslogtreecommitdiff
path: root/indra/newview/llmeshrepository.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llmeshrepository.cpp')
-rwxr-xr-xindra/newview/llmeshrepository.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/indra/newview/llmeshrepository.cpp b/indra/newview/llmeshrepository.cpp
index 08d2d03b9b..86b471a284 100755
--- a/indra/newview/llmeshrepository.cpp
+++ b/indra/newview/llmeshrepository.cpp
@@ -27,6 +27,9 @@
#include "llviewerprecompiledheaders.h"
+#include "apr_pools.h"
+#include "apr_dso.h"
+#include "llhttpconstants.h"
#include "llapr.h"
#include "llhttpstatuscodes.h"
#include "llmeshrepository.h"
@@ -515,6 +518,7 @@ S32 LLMeshRepoThread::sRequestWaterLevel = 0;
class LLMeshHandlerBase : public LLCore::HttpHandler
{
public:
+ LOG_CLASS(LLMeshHandlerBase);
LLMeshHandlerBase()
: LLCore::HttpHandler(),
mMeshParams(),
@@ -547,6 +551,7 @@ public:
class LLMeshHeaderHandler : public LLMeshHandlerBase
{
public:
+ LOG_CLASS(LLMeshHeaderHandler);
LLMeshHeaderHandler(const LLVolumeParams & mesh_params)
: LLMeshHandlerBase()
{
@@ -603,6 +608,7 @@ public:
class LLMeshSkinInfoHandler : public LLMeshHandlerBase
{
public:
+ LOG_CLASS(LLMeshSkinInfoHandler);
LLMeshSkinInfoHandler(const LLUUID& id, U32 offset, U32 size)
: LLMeshHandlerBase(),
mMeshID(id),
@@ -632,6 +638,7 @@ public:
class LLMeshDecompositionHandler : public LLMeshHandlerBase
{
public:
+ LOG_CLASS(LLMeshDecompositionHandler);
LLMeshDecompositionHandler(const LLUUID& id, U32 offset, U32 size)
: LLMeshHandlerBase(),
mMeshID(id),
@@ -661,6 +668,7 @@ public:
class LLMeshPhysicsShapeHandler : public LLMeshHandlerBase
{
public:
+ LOG_CLASS(LLMeshPhysicsShapeHandler);
LLMeshPhysicsShapeHandler(const LLUUID& id, U32 offset, U32 size)
: LLMeshHandlerBase(),
mMeshID(id),
@@ -736,7 +744,6 @@ void log_upload_error(LLCore::HttpStatus status, const LLSD& content,
}
}
-
LLMeshRepoThread::LLMeshRepoThread()
: LLThread("mesh repo"),
mHttpRequest(NULL),