Add system properties and log level documentation#108
Merged
Conversation
…s in README Adds a System Properties Reference table covering lib.path, lib.name, tmpdir, osinfo.architecture, and test.ngl, which were present in LlamaSystemProperties but undocumented. Also adds a LogLevel enum table to the Logging section. https://claude.ai/code/session_01JHR93CRAuHQorL4fdABF99
bernardladenthin
pushed a commit
that referenced
this pull request
Jun 17, 2026
….11.0 Mirrors the streambuffer Dependabot updates (#108, #109) on the java-llama.cpp branch. Both target versions are the current latest releases on Maven Central. Verified: - spotless:check passes with 3.7.0 (no reformatting of existing sources; palantir-java-format stays pinned at 2.92.0) - central-publishing 0.11.0 resolves from Maven Central (used only by the release/deploy profile) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01JBzF5wtCjRu5t4FMzphryM
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds comprehensive documentation for system properties and log level enums to the README, improving discoverability and usability of configuration options.
Key Changes
System Properties Reference: Added a new section documenting all
net.ladenthin.llama.*system properties with descriptions:net.ladenthin.llama.lib.path- Custom directory for native librarynet.ladenthin.llama.lib.name- Override native library filenamenet.ladenthin.llama.tmpdir- Custom temporary directory for JAR extractionnet.ladenthin.llama.osinfo.architecture- Override OS/architecture detectionnet.ladenthin.llama.test.ngl- GPU layers configuration for testingLogLevel Enum Documentation: Added a reference table explaining the
LogLevelenum values and their meanings:DEBUG- Verbose diagnostic outputINFO- Informational messages about model loading and inferenceWARN- Non-fatal warningsERROR- Errors that may affect inference resultsImplementation Details
https://claude.ai/code/session_01JHR93CRAuHQorL4fdABF99