fix verbose setting
Signed-off-by: carlitosan <82187351+carlitosan@users.noreply.github.com>
This commit is contained in:
@@ -102,9 +102,6 @@ namespace ScriptCanvasEditor
|
||||
void Log(const char* format, ...);
|
||||
|
||||
private:
|
||||
|
||||
bool m_verbose = true;
|
||||
|
||||
StateMachine* m_stateMachine;
|
||||
};
|
||||
|
||||
@@ -363,7 +360,7 @@ namespace ScriptCanvasEditor
|
||||
template <typename Traits>
|
||||
void ScriptCanvasEditor::State<Traits>::Log(const char* format, ...)
|
||||
{
|
||||
if (m_verbose)
|
||||
if (GetVerbose())
|
||||
{
|
||||
char sBuffer[2048];
|
||||
va_list ArgList;
|
||||
|
||||
Reference in New Issue
Block a user