summaryrefslogtreecommitdiff
path: root/indra/newview/llmeshrepository.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llmeshrepository.cpp')
-rwxr-xr-xindra/newview/llmeshrepository.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/indra/newview/llmeshrepository.cpp b/indra/newview/llmeshrepository.cpp
index 5afd2cb329..269c361754 100755
--- a/indra/newview/llmeshrepository.cpp
+++ b/indra/newview/llmeshrepository.cpp
@@ -29,7 +29,7 @@
#include "apr_pools.h"
#include "apr_dso.h"
-#include "llhttpstatuscodes.h"
+#include "llhttpconstants.h"
#include "llmeshrepository.h"
#include "llagent.h"
@@ -526,6 +526,7 @@ S32 LLMeshRepoThread::sRequestWaterLevel = 0;
class LLMeshHandlerBase : public LLCore::HttpHandler
{
public:
+ LOG_CLASS(LLMeshHandlerBase);
LLMeshHandlerBase()
: LLCore::HttpHandler(),
mMeshParams(),
@@ -558,6 +559,7 @@ public:
class LLMeshHeaderHandler : public LLMeshHandlerBase
{
public:
+ LOG_CLASS(LLMeshHeaderHandler);
LLMeshHeaderHandler(const LLVolumeParams & mesh_params)
: LLMeshHandlerBase()
{
@@ -614,6 +616,7 @@ public:
class LLMeshSkinInfoHandler : public LLMeshHandlerBase
{
public:
+ LOG_CLASS(LLMeshSkinInfoHandler);
LLMeshSkinInfoHandler(const LLUUID& id, U32 offset, U32 size)
: LLMeshHandlerBase(),
mMeshID(id),
@@ -643,6 +646,7 @@ public:
class LLMeshDecompositionHandler : public LLMeshHandlerBase
{
public:
+ LOG_CLASS(LLMeshDecompositionHandler);
LLMeshDecompositionHandler(const LLUUID& id, U32 offset, U32 size)
: LLMeshHandlerBase(),
mMeshID(id),
@@ -672,6 +676,7 @@ public:
class LLMeshPhysicsShapeHandler : public LLMeshHandlerBase
{
public:
+ LOG_CLASS(LLMeshPhysicsShapeHandler);
LLMeshPhysicsShapeHandler(const LLUUID& id, U32 offset, U32 size)
: LLMeshHandlerBase(),
mMeshID(id),
@@ -747,7 +752,6 @@ void log_upload_error(LLCore::HttpStatus status, const LLSD& content,
}
}
-
LLMeshRepoThread::LLMeshRepoThread()
: LLThread("mesh repo"),
mHttpRequest(NULL),