From 3ace66420ec91045803d9ec0538aef368e61a338 Mon Sep 17 00:00:00 2001 From: in0finite Date: Sat, 19 Feb 2022 03:26:48 +0100 Subject: [PATCH] ... --- Assets/Scripts/Utilities/BackgroundJobRunner.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/Scripts/Utilities/BackgroundJobRunner.cs b/Assets/Scripts/Utilities/BackgroundJobRunner.cs index 6bd145f7..81042a4c 100644 --- a/Assets/Scripts/Utilities/BackgroundJobRunner.cs +++ b/Assets/Scripts/Utilities/BackgroundJobRunner.cs @@ -91,9 +91,9 @@ namespace SanAndreasUnity.Utilities // _thread.Interrupt (); _threadParameters.TellThreadToExit(); if (_thread.Join(7000)) - Debug.LogFormat("Stopped loading thread in {0} ms", sw.Elapsed.TotalMilliseconds); + Debug.LogFormat("Stopped background thread in {0} ms", sw.Elapsed.TotalMilliseconds); else - Debug.LogError("Failed to stop loading thread"); + Debug.LogError("Failed to stop background thread"); } }