Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
illuna-minetest
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Illuna-Minetest
illuna-minetest
Commits
ba73e75e
Commit
ba73e75e
authored
12 years ago
by
Perttu Ahola
Browse files
Options
Downloads
Patches
Plain Diff
Modify some client log message levels
parent
f4b7e1a5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/client.cpp
+8
-8
8 additions, 8 deletions
src/client.cpp
with
8 additions
and
8 deletions
src/client.cpp
+
8
−
8
View file @
ba73e75e
...
...
@@ -2438,7 +2438,7 @@ ClientEvent Client::getClientEvent()
void
Client
::
afterContentReceived
()
{
verbose
stream
<<
"Client::afterContentReceived() started"
<<
std
::
endl
;
info
stream
<<
"Client::afterContentReceived() started"
<<
std
::
endl
;
assert
(
m_itemdef_received
);
assert
(
m_nodedef_received
);
assert
(
m_media_received
);
...
...
@@ -2448,31 +2448,31 @@ void Client::afterContentReceived()
m_media_name_sha1_map
.
clear
();
// Rebuild inherited images and recreate textures
verbose
stream
<<
"Rebuilding images and textures"
<<
std
::
endl
;
info
stream
<<
"
-
Rebuilding images and textures"
<<
std
::
endl
;
m_tsrc
->
rebuildImagesAndTextures
();
// Update texture atlas
verbose
stream
<<
"Updating texture atlas"
<<
std
::
endl
;
info
stream
<<
"
-
Updating texture atlas"
<<
std
::
endl
;
if
(
g_settings
->
getBool
(
"enable_texture_atlas"
))
m_tsrc
->
buildMainAtlas
(
this
);
// Update node aliases
verbose
stream
<<
"Updating node aliases"
<<
std
::
endl
;
info
stream
<<
"
-
Updating node aliases"
<<
std
::
endl
;
m_nodedef
->
updateAliases
(
m_itemdef
);
// Update node textures
verbose
stream
<<
"Updating node textures"
<<
std
::
endl
;
info
stream
<<
"
-
Updating node textures"
<<
std
::
endl
;
m_nodedef
->
updateTextures
(
m_tsrc
);
// Update item textures and meshes
verbose
stream
<<
"Updating item textures and meshes"
<<
std
::
endl
;
info
stream
<<
"
-
Updating item textures and meshes"
<<
std
::
endl
;
m_itemdef
->
updateTexturesAndMeshes
(
this
);
// Start mesh update thread after setting up content definitions
verbose
stream
<<
"Starting mesh update thread"
<<
std
::
endl
;
info
stream
<<
"
-
Starting mesh update thread"
<<
std
::
endl
;
m_mesh_update_thread
.
Start
();
verbose
stream
<<
"Client::afterContentReceived() done"
<<
std
::
endl
;
info
stream
<<
"Client::afterContentReceived() done"
<<
std
::
endl
;
}
float
Client
::
getRTT
(
void
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment