Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Analytics Log Level

How do I set the log level in swift for google analytics?

I have the line:

GAI.sharedInstance().logger.logLevel = 

but I cannot find kGAILogLevelVerbose in the swift constants.

like image 461
steventnorris Avatar asked Nov 11 '14 22:11

steventnorris


People also ask

Can I get user level data from Google Analytics?

The User Activity API allows a Google Analytics property owner to retrieve all analytics measurement data associated with a single user. Specifically, the API retrieves all of the measurement data associated with a particular User ID or Client ID.

What is log analytics used for?

Log analytics involves searching, analyzing, and visualizing machine data generated by your IT systems and technology infrastructure to gain operational insights. Traditional data analytics tools are simply not built to handle the variety and volume of rapidly proliferating machine data.


1 Answers

Try this:

GAI.sharedInstance().logger.logLevel = GAILogLevel.Verbose;
like image 194
Jan Rüegg Avatar answered Sep 21 '22 08:09

Jan Rüegg