All Projects → yourtion → EventLogger

yourtion / EventLogger

Licence: MIT license
Log event count and event time in iOS

Programming Languages

objective c
16641 projects - #2 most used programming language
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to EventLogger

loggers
Abstract logging for Golang projects. A kind of log4go in the spirit of log4j
Stars: ✭ 17 (-19.05%)
Mutual labels:  logger
DRF-API-Logger
An API Logger for your Django Rest Framework project.
Stars: ✭ 184 (+776.19%)
Mutual labels:  logger
phoenix passwordless login
Phoenix Passwordless Login
Stars: ✭ 28 (+33.33%)
Mutual labels:  logger
Web-Tracker
Stand alone program that Tracks/Logs all the opened websites in the Chrome Browser. Even incognito! *No need to install anything in browser*
Stars: ✭ 34 (+61.9%)
Mutual labels:  logger
lines-logger
Browser logger that rests lines in peace
Stars: ✭ 26 (+23.81%)
Mutual labels:  logger
wlog
A simple logging interface that supports cross-platform color and concurrency.
Stars: ✭ 59 (+180.95%)
Mutual labels:  logger
WormholyForObjectiveC
Network debugging made easy,This network debugging tool is developed based on the swift version of Wormholy.
Stars: ✭ 21 (+0%)
Mutual labels:  logger
Android-NativeLogger
Android Logger
Stars: ✭ 21 (+0%)
Mutual labels:  logger
JJSwiftLog
Swift log library for all platform
Stars: ✭ 51 (+142.86%)
Mutual labels:  logger
ng2-logger
Isomorphic logger for Browser and NodeJS, ( typescript / javascript ) apps
Stars: ✭ 61 (+190.48%)
Mutual labels:  logger
LogDNA-Android-Client
Android client for LogDNA
Stars: ✭ 22 (+4.76%)
Mutual labels:  logger
logback-access-spring-boot-starter
Spring Boot Starter for Logback-access.
Stars: ✭ 153 (+628.57%)
Mutual labels:  logger
spdlog-python
python wrapper around C++ spdlog ([email protected]:gabime/spdlog.git)
Stars: ✭ 46 (+119.05%)
Mutual labels:  logger
ets2-job-logger
ETS2 Job Logger
Stars: ✭ 15 (-28.57%)
Mutual labels:  logger
QLogger
Multi-threading logger for Qt applications
Stars: ✭ 46 (+119.05%)
Mutual labels:  logger
l
Golang Pretty Logger
Stars: ✭ 51 (+142.86%)
Mutual labels:  logger
logops
Really simple and performant logger for node projects compatible with any kind of deployments as your server operations/environment defined
Stars: ✭ 20 (-4.76%)
Mutual labels:  logger
base
OST Base provides advanced Promise Queue Manager and other utilities.
Stars: ✭ 19 (-9.52%)
Mutual labels:  logger
RxLogs
An Android & Kotlin Reactive Advanced Logging Framework.
Stars: ✭ 12 (-42.86%)
Mutual labels:  logger
G-Earth
Cross-platform Habbo packet manipulator
Stars: ✭ 52 (+147.62%)
Mutual labels:  logger

EventLogger

Version License Platform Build Status

Log event count and event time in iOS

Installation

The preferred way of installation is via CocoaPods. Just add

pod 'EventLogger'

and run pod install. It will install the most recent version of EventLogger.

How to use

Import header file

Import header file where you want to log event:

#import "EventLogger.h"

Log count event

[[EventLogger sharedInstance] addCountEventWithTag:@"click_clean"];

Log event time

Start Loging EventCount2;

[[EventLogger sharedInstance] addCountEventWithTag:@"EventCount2"];

Loging EventCount2 time from event begining;

[[EventLogger sharedInstance] addTimeEventPoint:@"e12" withTag:@"TimeEven1" andInfo:nil timeFromPoint:@nil];

Loging EventCount2 time from point e12;

[[EventLogger sharedInstance] addTimeEventPoint:@"e13" withTag:@"TimeEven1" andInfo:nil timeFromPoint:@"e12"];

That's it! Have fun with EventLogger!

ScreenShot

ScreenShot1

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].