Reputation: 2261
I can't find them documented anywhere. So what does the values in this Logcat error message mean:
06-28 14:59:53.172: E/dalvikvm(32679): 32679(...) stat: (e) 393 5941KB / (c) 0 0KB / (a) 27 69MB / (h) 730KB 2668KB 1937KB
I should additionally mention that after this message I got this:
06-28 14:59:53.172: D/dalvikvm(32679): GC_FOR_ALLOC freed 2050K, 65% free 4916K/13892K, paused 26ms, total 26ms
Upvotes: 1
Views: 1198
Reputation: 8478
From Android Documentation :
D/dalvikvm: <GC_Reason> <Amount_freed>, <Heap_stats>,
<External_memory_stats>, <Pause_time>
Example :
D/dalvikvm( 9050): GC_CONCURRENT freed 2049K, 64% free 3571K/9991K,
external 4703K/5261K, paused 2ms+2ms
All fields name are self-explainatory, but some points to note :
Upvotes: 2