[SOLVED] - Inside RunService:BindToSimulation() "LogService" occurs a error but i can use print / warn

I’m using, RunService:BindToSimulation() in my Framework and have a custom error tracer. The problem is summarized on the title but:

When I use LogService in any way to “Log” my errors ESPECIALLY INSIDE “BindToSimulation” it errors with this message: “Function LogService.[WHAT I CALLED] is not allowed for simulation callbacks”

BUT, if I use print or warn instead of LogService in any way. It runs without any problems.
I thought maybe it was because of LogService:Info() but when i tested with “Warn/Output”, seems like it doesn’t want me to use LogService.

I HAVE to use LogService for “Info” function. Sadly Roblox didn’t allow us.
Is there a way to bypass that? OR Is there a way that i can report this? because i don’t really think it would become a problem for Simulation Calls, ITS JUST A OUTPUT MESSAGE. Probably the work environments aren’t the same, so that’s why it doesn’t allow me but still it doesn’t make sense.

Again - IS THERE A WAY TO BYPASS THIS?

I found a way, clearly I created a forum before even thinking a little bit. :sob:

IF ANYONE COMES UP TO THIS PROBLEM:

task.spawn(function()
	task.synchronize()

	-- whatever ur doing.

end)

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.