--- deliantra/server/ext/checkrusage.ext 2012/02/03 03:01:44 1.8 +++ deliantra/server/ext/checkrusage.ext 2016/11/16 22:14:05 1.9 @@ -20,7 +20,7 @@ sysread $STAT_FH, my $stat, 4096; # only a single line my $vmsize = (split / /, $stat)[22]; - cf::cleanup "memory usage growing high, server would run out of memory soon", 0 + cf::cleanup "memory usage growing high ($vmsize > $MAX_VMSIZE), server would run out of memory soon", 0 if $vmsize >= $MAX_VMSIZE; }; };