Android Question Turn off k messages

Robert Valentino

Well-Known Member
Licensed User
Longtime User
When running my program I get a lot of these log messages.

1.76k
1.87k
1.76k
0.53k
1.32k
1.76k
1.87k
1.76k
0.53k
1.32k

I don't remember what I did to cause them to be showing, can someone tell me how to turn them off

BobVal
 

klaus

Expert
Licensed User
Longtime User
I don't remember what I did to cause them to be showing ...
Sorry, but we also don't know what you have done !!!
You know more than we do, so how do you expect us to help you.
Check all your Logs (Quick Search!!!).
It can be everywhere in your code or in a class or a library !?
 
Upvote 0

MarkusR

Well-Known Member
Licensed User
Longtime User
Replace Log("") with your own sub and catch the contains "k" at a break point ;)
if it is not yours, maybe from a lib???
 
Upvote 0

Robert Valentino

Well-Known Member
Licensed User
Longtime User
Figured it out it is coming from Base64Image

When calling the Base64Image Function DecodeToImage it logs out (I am guessing) how much memory

Will see if there is a fix

Thanks guys
 
Upvote 0
Top