From 3efcc3684eaf1aa03a49f388354ce73e2043c157 Mon Sep 17 00:00:00 2001 From: Seth Alves Date: Mon, 6 Apr 2015 17:05:09 -0700 Subject: [PATCH] split out octree logging --- libraries/octree/src/OctreeLogging.cpp | 14 ++++++++++++++ libraries/octree/src/OctreeLogging.h | 14 ++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 libraries/octree/src/OctreeLogging.cpp create mode 100644 libraries/octree/src/OctreeLogging.h diff --git a/libraries/octree/src/OctreeLogging.cpp b/libraries/octree/src/OctreeLogging.cpp new file mode 100644 index 0000000000..59930b11f5 --- /dev/null +++ b/libraries/octree/src/OctreeLogging.cpp @@ -0,0 +1,14 @@ +// +// OctreeLogging.h +// libraries/octree/src +// +// Created by Seth Alves on 4/6/15. +// Copyright 2014 High Fidelity, Inc. +// +// Distributed under the Apache License, Version 2.0. +// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html +// + +#include "OctreeLogging.h" + +Q_LOGGING_CATEGORY(octree, "hifi.octree") diff --git a/libraries/octree/src/OctreeLogging.h b/libraries/octree/src/OctreeLogging.h new file mode 100644 index 0000000000..d38932271c --- /dev/null +++ b/libraries/octree/src/OctreeLogging.h @@ -0,0 +1,14 @@ +// +// OctreeLogging.h +// libraries/octree/src +// +// Created by Seth Alves on 4/6/15. +// Copyright 2014 High Fidelity, Inc. +// +// Distributed under the Apache License, Version 2.0. +// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html +// + +#include + +Q_DECLARE_LOGGING_CATEGORY(octree)