TIL - Today I Learned : C언어의 printf 같은 형식으로 output log에 메세지를 출력할 수 있음
오늘의 진도: Section 3: 장애물 공격 61. Writing To The Output Log
1st Parameter - CategoryName : 어떤 타입의 로그인지
2nd Parameter - Verbosity : 로그의 레벨 == 얼마나 긴급한지
3rd Parameter - Format: 함수 안의 함수로 출력해야할 텍스트를 넘겨줌
Verbosity에 따라 Output Log에서 출력되는 형식이 다르
``을 두번 누르면 Output Log Window가 열린다
ELogVerbosity::Type
Enum that defines the verbosity levels of the logging system.
dev.epicgames.com
https://cplusplus.com/reference/cstdio/printf/
https://cplusplus.com/reference/cstdio/printf/
function <cstdio> printf int printf ( const char * format, ... ); Print formatted data to stdout Writes the C string pointed by format to the standard output (stdout). If format includes format specifiers (subsequences beginning with %), the additional arg
cplusplus.com
'Unreal Engine > Udemy:UE5 C++ 학습하고 게임 만들기' 카테고리의 다른 글
Unreal Day - 20 - Section Intro - Crypt Raider (1) | 2024.04.17 |
---|---|
Unreal Day - 19 - FString & const (0) | 2024.04.08 |
Unreal Day - 17 - Blueprint Child Class (0) | 2024.04.06 |
Unreal Day - 16 - Calling Functions in C++ (1) | 2024.04.01 |
Unreal Day - 15 - UPROPERTY (0) | 2024.03.31 |