File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ RubyLLM.configure do |config|
86
86
# config.http_proxy = "socks5://proxy.company.com:1080" # SOCKS5 proxy
87
87
88
88
# --- Logging Settings ---
89
- # config.logger = Rails.logger # When set the file and level settings are not used.
89
+ # config.logger = Rails.logger # NOTE: When set the log_file and log_level settings are not used.
90
90
config.log_file = ' /logs/ruby_llm.log'
91
91
config.log_level = :debug # debug level can also be set to debug by setting RUBYLLM_DEBUG envar to true
92
92
config.log_assume_model_exists = false # Silence "Assuming model exists for provider" warning
@@ -167,8 +167,8 @@ RubyLLM.configure do |config|
167
167
config.log_file = ' /logs/ruby_llm.log' # Path to log file (default: nil, logs to STDOUT)
168
168
config.log_level = :debug # Log level (:debug, :info, :warn)
169
169
170
- # --- Custom Logger ---
171
- config.logger = Rails .logger
170
+ # --- OR Custom Logger ---
171
+ config.logger = Rails .logger # NOTE: When set the log_file and log_level settings are not used.
172
172
end
173
173
```
174
174
You can’t perform that action at this time.
0 commit comments