mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 15:29:32 +02:00
Add logging.
This commit is contained in:
parent
1d99057052
commit
05dda1220e
2 changed files with 32 additions and 0 deletions
14
libraries/animation/src/AnimationLogging.cpp
Normal file
14
libraries/animation/src/AnimationLogging.cpp
Normal file
|
@ -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")
|
18
libraries/animation/src/AnimationLogging.h
Normal file
18
libraries/animation/src/AnimationLogging.h
Normal file
|
@ -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 <QLoggingCategory>
|
||||||
|
|
||||||
|
Q_DECLARE_LOGGING_CATEGORY(animation)
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in a new issue