MM-9661: tweak post message size log (#8517)

Call out the number of supported characters explicitly, moving the byte
limit to parentheses.
Этот коммит содержится в:
Jesse Hallam
2018-03-29 10:02:58 -04:00
коммит произвёл Harrison Healey
родитель 26b523e4a1
Коммит d4c0494360
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@@ -1269,8 +1269,6 @@ func (s *SqlPostStore) determineMaxPostSize() int {
l4g.Warn(utils.T("store.sql_post.query_max_post_size.unrecognized_driver"))
}
l4g.Trace(utils.T("store.sql_post.query_max_post_size.max_post_size_bytes"), maxPostSizeBytes)
// Assume a worst-case representation of four bytes per rune.
maxPostSize = int(maxPostSizeBytes) / 4
@@ -1281,6 +1279,8 @@ func (s *SqlPostStore) determineMaxPostSize() int {
maxPostSize = model.POST_MESSAGE_MAX_RUNES_V1
}
l4g.Info(utils.T("store.sql_post.query_max_post_size.max_post_size_bytes"), maxPostSize, maxPostSizeBytes)
return maxPostSize
}