Is there an Erlang equivalent of Java's -XX:+PrintGC
? I have searched for "Erlang garbage collection logging" but most of what I find are explanations of how Erlang's GC works, which is not what I am looking for.
Asked
Active
Viewed 161 times
3

Ninj0r
- 189
- 1
- 4
-
Can you explain what you're actually trying to solve? – Steve Vinoski Nov 25 '16 at 13:44
-
2[Erlang tracer](http://erlang.org/doc/man/erlang.html#trace-3) can be registered for garbage collection events. What information you're looking for? – reith Dec 04 '16 at 06:59
-
@Reith this seems close to what I want, I'll play around with it. I want to know when the garbage collector runs. – Ninj0r Dec 08 '16 at 00:39
-
https://stackoverflow.com/questions/1815390/what-do-xx-printgc-and-xx-printgcdetails-flags-do – 2240 Nov 17 '20 at 11:59