Index: trunk/src/libcschem/hierarchy.c =================================================================== --- trunk/src/libcschem/hierarchy.c (revision 10246) +++ trunk/src/libcschem/hierarchy.c (revision 10247) @@ -104,7 +104,10 @@ switch(lib->type) { case CSCH_SLIB_STATIC: if (sheet_name_eq(lib->name, name, nlen)) { - csch_sheet_t *res = csch_app_load_sheet_cb(proj, lib->realpath); + csch_sheet_t *res; + + rnd_message(RND_MSG_INFO, "Attempting to load '%s' for sheet named '%s'...\n", lib->realpath, name); + res = csch_app_load_sheet_cb(proj, lib->realpath); return res; } break; @@ -138,6 +141,8 @@ return sheet; } + rnd_message(RND_MSG_INFO, "Hirearchic: sheet named '%s' not found in the project, searching the hlibrary...\n", name); + /* search the hlibrary */ if (csch_app_load_sheet_cb == NULL) return NULL; @@ -180,6 +185,7 @@ } } + rnd_message(RND_MSG_INFO, "Hirearchic: sheet with path '%s' not found in the project, loading from the file system...\n", path); res = csch_app_load_sheet_cb(prj, nr_path); done:;