ok, so I have a situation that requires some flexibility.  The tablets are 
air gapped so using the "cloud based crash reporting" wont work.  We can 
use email based reporting (they can save the logfile as a draft and then 
send when they are connected)

However the sendlog function is static (not instance based) so I cant 
override it.  Can the following, or similar, change be made?  Or is there 
another way to send the log?

    public static void sendLog() {
    if (instance != null) instance._sendLog();
    }
    
    protected void _sendLog() {
       .... current sendLog continues here .....





On Tuesday, October 4, 2016 at 8:04:02 PM UTC-7, Shai Almog wrote:
>
> Not much beyong the javadocs as far as I recall. Our official way for 
> reading is the sendLog() method which we use a lot but it's a pro feature.
> Writing is just Log.p(),Log.e() where you can just write whatever you want 
> into the log. I don't have experience in reading the log other than sendLog 
> since that works for us.
>

-- 
You received this message because you are subscribed to the Google Groups 
"CodenameOne Discussions" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/15ee2403-664e-45ea-9997-ca96ce09b615%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to