C# Class PlayFab.Public.PlayFabLogger

This translates the logs up to the PlayFab service via a PlayFab restful API TODO: PLAYFAB - attach these to the PlayFab API
Inheritance: PlayFabLoggerBase
Show file Open project: PlayFab/PlayFab-Samples

Protected Methods

Method Description
BeginUploadLog ( ) : void

Logs are cached and written in bursts BeginUploadLog is called at the begining of each burst

EndUploadLog ( ) : void

Logs are cached and written in bursts EndUploadLog is called at the end of each burst

UploadLog ( string message ) : void

Logs are cached and written in bursts UploadLog is called for each cached log, between BeginUploadLog and EndUploadLog

Method Details

BeginUploadLog() protected method

Logs are cached and written in bursts BeginUploadLog is called at the begining of each burst
protected BeginUploadLog ( ) : void
return void

EndUploadLog() protected method

Logs are cached and written in bursts EndUploadLog is called at the end of each burst
protected EndUploadLog ( ) : void
return void

UploadLog() protected method

Logs are cached and written in bursts UploadLog is called for each cached log, between BeginUploadLog and EndUploadLog
protected UploadLog ( string message ) : void
message string
return void