From 05dda1220e54d856fc52ecb445331480aff9b888 Mon Sep 17 00:00:00 2001 From: Howard Stearns Date: Fri, 24 Jul 2015 22:01:55 -0700 Subject: [PATCH] Add logging. --- libraries/animation/src/AnimationLogging.cpp | 14 ++++++++++++++ libraries/animation/src/AnimationLogging.h | 18 ++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 libraries/animation/src/AnimationLogging.cpp create mode 100644 libraries/animation/src/AnimationLogging.h diff --git a/libraries/animation/src/AnimationLogging.cpp b/libraries/animation/src/AnimationLogging.cpp new file mode 100644 index 0000000000..11ed5ebd35 --- /dev/null +++ b/libraries/animation/src/AnimationLogging.cpp @@ -0,0 +1,14 @@ +// +// AnimationLogging.cpp +// libraries/audio/src +// +// Created by Howard Stearns on 7/24/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 "AnimationLogging.h" + +Q_LOGGING_CATEGORY(animation, "hifi.animation") diff --git a/libraries/animation/src/AnimationLogging.h b/libraries/animation/src/AnimationLogging.h new file mode 100644 index 0000000000..6c56e2dbe4 --- /dev/null +++ b/libraries/animation/src/AnimationLogging.h @@ -0,0 +1,18 @@ +// +// AnimationLogging.h +// libraries/animation/src/ +// +// Created by Howard Stearns on 7/24/15. +// +// Distributed under the Apache License, Version 2.0. +// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html +// + +#ifndef hifi_AnimationLogging_h +#define hifi_AnimationLogging_h + +#include + +Q_DECLARE_LOGGING_CATEGORY(animation) + +#endif