commit 06c180ee0a68a3b11384d78aabee72fb9b9ac256
parent 2672212111b3960b35a3602b97574039b4ae6a85
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Mon, 2 Mar 2026 16:01:28 +0100
Fix library verbosity
The input parameter "verbose" was not taken into account.
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/sgas.c b/src/sgas.c
@@ -570,6 +570,7 @@ sgas_create
ref_init(&gas->ref);
gas->allocator = allocator;
gas->logger = gas->logger ? gas->logger : LOGGER_DEFAULT;
+ gas->verbose = args->verbose;
darray_therm_props_init(gas->allocator, &gas->therm_props);
if((res = setup_mesh(gas, args)) != RES_OK) goto error;