문의를 남기실 경우 다음 항목을 작성해 주시면 빠른 답변 처리에 도움이 됩니다.
- 프로젝트명 : 슬라임 랜덤 디펜스
- 뒤끝SDK 버전 : 5.4.5
- 에러 코드 :
public void InputLogs(string type, string funcname, string[] message)
{
if (PlayerManager.instance.testmode)
return;
BackendReturnObject bro = Backend.BMember.IsAccessTokenAlive();
if (bro.IsSuccess())
{
Param param = new Param();
for(int i =0; i<message.Length;i++)
{
param.Add(string.Format("{0}.{1}",i,funcname), message[i]);
}
Backend.GameLog.InsertLog(type, param);
Debug.Log("InputLogs() : 성공");
}
else
{
Debug.Log("InputLogs() : 실패 , 로그인 안되어있음");
}
}
위 코드와 같이 param에 로그를 남길 메세지를 여러개 추가하고 InsertLog를 하면 게임로그에 맨 위 사진처럼
공백처리가 되는데 게임로그에 넣는 param에는 오직 하나의 요소만 넣어야 하나요? 여러개 요소를 넣으면 저렇게 공백처리가 되는건가요?