13 lines
269 B
C++
13 lines
269 B
C++
// Copyright (c) 2024 Sentry. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreTypes.h"
|
|
#include "Logging/LogVerbosity.h"
|
|
|
|
class SentryLogUtils
|
|
{
|
|
public:
|
|
static void LogStackTrace(const TCHAR* Heading, const ELogVerbosity::Type LogVerbosity, int FramesToSkip);
|
|
};
|