ATOM-15221 Material Editor: Capturing trace warnings and errors to display in error message boxes
https://jira.agscollab.com/browse/ATOM-15221main
parent
cbc7b60eb8
commit
0e6fea21fc
@ -0,0 +1,41 @@
|
||||
/*
|
||||
* All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or
|
||||
* its licensors.
|
||||
*
|
||||
* For complete copyright and license terms please see the LICENSE at the root of this
|
||||
* distribution (the "License"). All use of this software is governed by the License,
|
||||
* or, if provided, by the license below or the license accompanying this file. Do not
|
||||
* remove or modify any license notices. This file is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
*
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <AzCore/Debug/TraceMessageBus.h>
|
||||
#include <AzCore/std/string/string.h>
|
||||
|
||||
namespace AtomToolsFramework
|
||||
{
|
||||
// Records all TraceMessageBus activity to a string
|
||||
class TraceRecorder
|
||||
: private AZ::Debug::TraceMessageBus::Handler
|
||||
{
|
||||
public:
|
||||
AZ_TYPE_INFO(AtomToolsFramework::TraceRecorder, "{7B49AFD0-D0AB-4CB7-A4B5-6D88D30DCBFD}");
|
||||
|
||||
TraceRecorder();
|
||||
~TraceRecorder();
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
// AZ::Debug::TraceMessageBus::Handler overrides...
|
||||
bool OnAssert(const char* /*message*/) override;
|
||||
bool OnException(const char* /*message*/) override;
|
||||
bool OnError(const char* /*window*/, const char* /*message*/) override;
|
||||
bool OnWarning(const char* /*window*/, const char* /*message*/) override;
|
||||
bool OnPrintf(const char* /*window*/, const char* /*message*/) override;
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
|
||||
AZStd::string m_messageSink;
|
||||
};
|
||||
} // namespace AtomToolsFramework
|
||||
@ -0,0 +1,66 @@
|
||||
/*
|
||||
* All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or
|
||||
* its licensors.
|
||||
*
|
||||
* For complete copyright and license terms please see the LICENSE at the root of this
|
||||
* distribution (the "License"). All use of this software is governed by the License,
|
||||
* or, if provided, by the license below or the license accompanying this file. Do not
|
||||
* remove or modify any license notices. This file is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <AtomToolsFramework/Debug/TraceRecorder.h>
|
||||
|
||||
namespace AtomToolsFramework
|
||||
{
|
||||
TraceRecorder::TraceRecorder()
|
||||
{
|
||||
AZ::Debug::TraceMessageBus::Handler::BusConnect();
|
||||
}
|
||||
|
||||
TraceRecorder::~TraceRecorder()
|
||||
{
|
||||
AZ::Debug::TraceMessageBus::Handler::BusDisconnect();
|
||||
}
|
||||
|
||||
bool TraceRecorder::OnAssert(const char* message)
|
||||
{
|
||||
m_messageSink += "Assert: ";
|
||||
m_messageSink += message;
|
||||
m_messageSink += "\n";
|
||||
return false;
|
||||
}
|
||||
|
||||
bool TraceRecorder::OnException(const char* message)
|
||||
{
|
||||
m_messageSink += "Exception: ";
|
||||
m_messageSink += message;
|
||||
m_messageSink += "\n";
|
||||
return false;
|
||||
}
|
||||
|
||||
bool TraceRecorder::OnError(const char* /*window*/, const char* message)
|
||||
{
|
||||
m_messageSink += "Error: ";
|
||||
m_messageSink += message;
|
||||
m_messageSink += "\n";
|
||||
return false;
|
||||
}
|
||||
|
||||
bool TraceRecorder::OnWarning(const char* /*window*/, const char* message)
|
||||
{
|
||||
m_messageSink += "Warning: ";
|
||||
m_messageSink += message;
|
||||
m_messageSink += "\n";
|
||||
return false;
|
||||
}
|
||||
|
||||
bool TraceRecorder::OnPrintf(const char* /*window*/, const char* message)
|
||||
{
|
||||
m_messageSink += message;
|
||||
m_messageSink += "\n";
|
||||
return false;
|
||||
}
|
||||
|
||||
} // namespace AtomToolsFramework
|
||||
Loading…
Reference in New Issue