commit 6afe4cf69bc00ebea1c7ed2a10dbca428964752d
parent 8e21694efce739f0686ebe42f5d1b63e6b5d3f78
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Thu, 21 Jan 2021 09:39:00 +0100
Small update of the some log messages
Diffstat:
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/atrstm_setup_octrees.c b/src/atrstm_setup_octrees.c
@@ -633,7 +633,7 @@ build_octrees(struct atrstm* atrstm)
if(atrstm->cache) {
ASSERT(cache_is_empty(atrstm->cache));
- log_info(atrstm, "Write acceleration data structure to %s.\n",
+ log_info(atrstm, "Write acceleration data structure to '%s'.\n",
cache_get_name(atrstm->cache));
res = svx_tree_write(atrstm->octree, cache_get_stream(atrstm->cache));
@@ -689,11 +689,11 @@ setup_octrees(struct atrstm* atrstm)
time_sub(&t0, time_current(&t1), &t0);
time_dump(&t0, TIME_ALL, NULL, buf, sizeof(buf));
- log_info(atrstm, "Setup the partitionning data structures in %s\n", buf);
+ log_info(atrstm, "Setup the partitionning data structures in %s.\n", buf);
sz = MEM_ALLOCATED_SIZE(&atrstm->svx_allocator);
dump_memory_size(sz, NULL, buf, sizeof(buf));
- log_info(atrstm, "Star-VoXel memory usage: %s\n", buf);
+ log_info(atrstm, "Star-VoXel memory usage: %s.\n", buf);
exit:
return res;
diff --git a/src/atrstm_setup_uvm.c b/src/atrstm_setup_uvm.c
@@ -68,7 +68,7 @@ setup_unstructured_volumetric_mesh
res_T res = RES_OK;
ASSERT(atrstm && sth_filename && out_volume);
- log_info(atrstm, "Load and structure the volumetric mesh '%s'\n",
+ log_info(atrstm, "Load and structure the volumetric mesh '%s'.\n",
sth_filename);
time_current(&t0);
@@ -96,7 +96,7 @@ setup_unstructured_volumetric_mesh
/* Report time */
time_sub(&t0, time_current(&t1), &t0);
time_dump(&t0, TIME_ALL, NULL, buf, sizeof(buf));
- log_info(atrstm, "Setup volumetric mesh in %s\n", buf);
+ log_info(atrstm, "Setup volumetric mesh in %s.\n", buf);
exit:
*out_volume = volume;