RoveSoSimulator
Loading...
Searching...
No Matches
RoveSoSimulator.h
1// Fill out your copyright notice in the Description page of Project Settings.
2
3#pragma once
4
5#include "CoreMinimal.h"
6
7// custom log category
8DECLARE_LOG_CATEGORY_EXTERN(RoveSoSimulator, Log, All);
9
10// custom log macro
11#define LOG(x, ...) UE_LOG(RoveSoSimulator, Log, TEXT(x), __VA_ARGS__)
12#define LOGC(x, ...) UE_LOG(RoveSoSimulator, Log, x, __VA_ARGS__)
13#define LOG_WARNING(x, ...) UE_LOG(RoveSoSimulator, Warning, TEXT(x), __VA_ARGS__)
14#define LOG_ERROR(x, ...) UE_LOG(RoveSoSimulator, Error, TEXT(x), __VA_ARGS__)