We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a6f939 commit 58900c9Copy full SHA for 58900c9
1 file changed
conf/solr/solr-driver.sh
@@ -585,10 +585,10 @@ apply_field_definitions() {
585
log_info "Using source schema as base: ${SCHEMA_SOURCE_PATH}"
586
cp "${SCHEMA_SOURCE_PATH}" "${temp_schema}"
587
elif [[ -f "${target_schema}" ]]; then
588
- log_info "Source schema not found, using target schema as base: ${target_schema}"
+ log_info "Source schema not found at '$SCHEMA_SOURCE_PATH', using target schema as base: ${target_schema}"
589
cp "${target_schema}" "${temp_schema}"
590
else
591
- log_error "No base schema file found (neither source nor target exist)"
+ log_error "No base schema file found (neither source '$SCHEMA_SOURCE_PATH' nor target '$target_schema' exist)"
592
return 1
593
fi
594
0 commit comments