-
I was shocked to find out that my simple project almost without dependencies that just contains solutions for AoC tasks was taking around 500MB of space. Upon closer inspection turns out that there are almost half a gig of logs... I don't know if this is a bug or maybe I'm doing something wrong, so I'm not posting an issue yet, but this can't be right. Should I open an issue? vijexa@DESKTOP-ETMRL27:~/advent-of-code-2020/advent-of-code-2020/.metals$ du -ahd 1
644K ./metals.h2.db
488M ./metals.log
804K ./readonly
489M . |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Good question @vijexa. Just to give a comparison my
So I really don't think it should be as large as you're showing. I want to guess that you may have a bunch of exceptions or something being thrown in there, or something else causing an excessive amount of output. Are you able to take a peak inside and browse around? Report back anything that looks out of places like exceptions etc. |
Beta Was this translation helpful? Give feedback.
Good question @vijexa. Just to give a comparison my
metals.log
file in the metals codebase itself isSo I really don't think it should be as large as you're showing. I want to guess that you may have a bunch of exceptions or something being thrown in there, or something else causing an excessive amount of output. Are you able to take a peak inside and browse around? Report back anything that looks out of places like exceptions etc.