From a3d140269b6a025df0c073951637b807c8839f34 Mon Sep 17 00:00:00 2001 From: Kenneth Loeffler Date: Mon, 23 Oct 2023 11:47:50 -0700 Subject: [PATCH] Demote unapplied patch warnings to debug logs (#805) These warnings always appear for properties like `Capabilities`, `SourceAssetId`, etc. and tend to scare users who are syncing models. This information is now surfaced in the patch visualizer, so I think these warnings can be demoted to debug logs. --- plugin/src/ServeSession.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/src/ServeSession.lua b/plugin/src/ServeSession.lua index e5bbb12f1..56a06939e 100644 --- a/plugin/src/ServeSession.lua +++ b/plugin/src/ServeSession.lua @@ -282,7 +282,7 @@ function ServeSession:__initialSync(serverInfo) local unappliedPatch = self.__reconciler:applyPatch(catchUpPatch) if not PatchSet.isEmpty(unappliedPatch) then - Log.warn( + Log.debug( "Could not apply all changes requested by the Rojo server:\n{}", PatchSet.humanSummary(self.__instanceMap, unappliedPatch) ) @@ -309,7 +309,7 @@ function ServeSession:__mainSyncLoop() local unappliedPatch = self.__reconciler:applyPatch(message) if not PatchSet.isEmpty(unappliedPatch) then - Log.warn( + Log.debug( "Could not apply all changes requested by the Rojo server:\n{}", PatchSet.humanSummary(self.__instanceMap, unappliedPatch) )