mirror of
https://github.com/ollama/ollama-python.git
synced 2026-07-21 09:05:23 -04:00
Logging level of "HTTP Request: POST" should be DEBUG, not INFO #278
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @workflowsguy on GitHub (Jul 11, 2025).
Currently, when running a script making a request to the Ollama server, a log entry of level INFO is created like this:
HTTP Request: POST http://192.168.1.118:11434/api/generate "HTTP/1.1 200 OK"IMHO, this info is only relevant when debugging the calling script with the default log level set to DEBUG.
Hence, the level of this output message should be changed from INFO to DEBUG.