Update more code to new formatting machinery

This commit is contained in:
Lucien Greathouse
2019-11-18 15:18:06 -08:00
parent af866f0665
commit 0c7a94c062
5 changed files with 22 additions and 18 deletions

View File

@@ -133,7 +133,7 @@ function App:startSession(address, port)
-- Details being present indicates that this
-- disconnection was from an error.
if details ~= nil then
Log.warn(tostring(details))
Log.warn("Disconnected from an error: {}", details)
self:setState({
appStatus = AppStatus.Error,
@@ -207,7 +207,7 @@ function App:render()
end
function App:didMount()
Log.trace("Rojo %s initializing", self.displayedVersion)
Log.trace("Rojo {} initializing", self.displayedVersion)
checkUpgrade(self.props.plugin)
preloadAssets()