Imaginary code below, but basically if I have a timer executing a command every X seconds, is there a way to hide that from showing in the console? It's running a calculation every 0.1 to 5 seconds which floods my console and I'd like to avoid it. I've tried (if we use the example below) to just put ConVar.Env.time = _time (within the timer.Repeat), but that didn't work.
timer.Repeat(0.1f, 0, () =>
{
float _time;
_time = mx+b
ConsoleSystem.Run(ConsoleSystem.Option.Server, $"env.time {_time}");
});