hyperlog-android icon indicating copy to clipboard operation
hyperlog-android copied to clipboard

Utility logger library for storing logs into database and push them to remote server for debugging

Results 25 hyperlog-android issues
Sort by recently updated
recently updated
newest added

The problem is that in a class that implements Thread.UncaughtExceptionHandler, after calling the method pushLogs(), it is never reached onSuccess() or onError(). Thanks.

Currently the logs are cleared after an expiry time (default of 7 days). I'd be more interested in restricting the total disk consumption rather than some arbitrary time limit.

` File file = HyperLog.getDeviceLogsInFile(this); HyperLog.setURL("url"); HyperLog.pushLogs(this, file.getAbsolutePath(), false, new HLCallback() { @Override public void onSuccess(@NonNull Object response) { Log.d("HYPERLOG", "onSuccess: called"); } @Override public void onError(@NonNull HLErrorResponse HLErrorResponse) {...

I get the following error when trying to push the logs to server using: `HyperLog.pushLogs` `onError :: called with :: hlErrorResponse.getErrorCode = [400], hlErrorResponse.getErrorMessage = [400: The request could not...

Suppose first time I opened the app and navigate through app then kills the app. Logs of this session will be stored on remote server. Now suppose after killing the...

Because in a project I'm using timber - and I don't want change all methods call, my proposition creates a small library which will connect hyperlog and timber. I just...

How to append logs in same file without creating new one ?

Hi, I want to update same log file as soon as new logs are added in code. I dont want to write entire logs at same time but want it...

The library is using api 27 as target and it includes support library 27, so if you try to use a project with api 28, gradle complains that you are...

Hi there! I got a few crash reports with this issue "Unable to create application: sqlite.SQLiteDatabaseLockedException: database is locked" initializing HyperLog library. The initialization code is situated in an extension...