Skip to content

Commit

Permalink
Demote unapplied patch warnings to debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethloeffler committed Oct 23, 2023
1 parent d441fbd commit dd7d122
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin/src/ServeSession.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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)
)
Expand All @@ -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)
)
Expand Down

0 comments on commit dd7d122

Please sign in to comment.