lucapiccolboni/crylogger

Why the FileOutputStream is used instead of the native "android.util.Log" library ?

Closed this issue · 1 comments

I noticed in the implementation of CRYLOGGER, you used

private static FileOutputStream stream;

to record the log instead of using the android.util.Log library.
What is the intent of this design?

Thanks in advance.

Hi! We used FileOutputStream because we implemented everything within the boundary of the Java Library, without using any Android-specific class. This makes it easier to compile the code we added to the Java library. Thanks!