Skip to content

Commit 13bfd26

Browse files
committed
refactor(log): clarify atlas packing log messages
Update log messages during atlas packing to use clearer wording and consistent formatting for atlas size output. This improves readability and makes log output more informative.
1 parent 21d5737 commit 13bfd26

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/ImageList.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ bool cImageList::doPacking(const char* desiredAtlasName, const char* outputResNa
8484

8585
auto packer = AtlasPacker::create(m_images, m_config);
8686

87-
cLog::Info("Packing:");
88-
cLog::Info(" - trying {} x {}.", atlasSize.width, atlasSize.height);
87+
cLog::Info("Packing atlas:");
88+
cLog::Info(" - size: {} x {}", atlasSize.width, atlasSize.height);
8989

9090
bool done = false;
9191
do
@@ -98,7 +98,7 @@ bool cImageList::doPacking(const char* desiredAtlasName, const char* outputResNa
9898
return false;
9999
}
100100

101-
cLog::Info(" - trying {} x {}.", atlasSize.width, atlasSize.height);
101+
cLog::Info(" - size: {} x {}", atlasSize.width, atlasSize.height);
102102
}
103103
else
104104
{

0 commit comments

Comments
 (0)