Merges the existing `bpy.context` logging with the new `context` logging
added in [0]. In most cases `bpy.context` & `context` log the same thing.
Where the new `context` logging produces more accurate results.
Ref !146407
[0]: 439fe8a1a0
16 lines
234 B
C++
16 lines
234 B
C++
/* SPDX-FileCopyrightText: 2023 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup python
|
|
*
|
|
* Logging defines.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/* bpy_interface.cc */
|
|
|
|
extern struct CLG_LogRef *BPY_LOG_RNA;
|