exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit e370dc0cfdd61c20c52030c6812f17766d8db8da
parent e6825e24b62165d28b1bfd70bd81619dfb75cd81
Author: Christian Grothoff <christian@grothoff.org>
Date:   Tue, 10 Dec 2024 23:12:51 +0100

-log more templating details

Diffstat:
Msrc/templating/templating_api.c | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/src/templating/templating_api.c b/src/templating/templating_api.c @@ -427,6 +427,10 @@ load_template (void *cls, loaded[loaded_length - 1].lang = GNUNET_strndup (lang, end - lang); loaded[loaded_length - 1].value = map; + GNUNET_log (GNUNET_ERROR_TYPE_INFO, + "Loading template `%s' (%s)\n", + filename, + loaded[loaded_length - 1].name); return GNUNET_OK; } @@ -493,6 +497,9 @@ TALER_TEMPLATING_init (const struct GNUNET_OS_ProjectData *pd) path); GNUNET_free (path); } + GNUNET_log (GNUNET_ERROR_TYPE_INFO, + "Loading templates from `%s'\n", + dn); ret = GNUNET_DISK_directory_scan (dn, &load_template, NULL);