actionmcp 0.83.3 → 0.83.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/action_mcp/configuration.rb +3 -3
- data/lib/action_mcp/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 07c0477f4e98cef701c55861a54b06530246aa72aa7e4cb573fbf2d523c0ae54
|
|
4
|
+
data.tar.gz: 9bdff393572212ee32d0430ba2887292f35b0489a0753399a27a5f7a16aa3fac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d84067880b719178839887ec9aed55236486a1b8ed60859d1885303ac71b83525c3a52ee4c9267cf1b84044f467668b2a05ec06485d31666d0057838ab789b3a
|
|
7
|
+
data.tar.gz: b4f687ea0485632c75670c64c9d8953cc340fc45ed774993a0ce2c661c30e05e5429047fb30146c6450e66e1b72ea2be6aae8977127e9cdbedb50e5b578186fd
|
|
@@ -140,7 +140,7 @@ module ActionMCP
|
|
|
140
140
|
app_profiles = app_profiles.deep_symbolize_keys
|
|
141
141
|
end
|
|
142
142
|
|
|
143
|
-
Rails.logger.debug "[Configuration] Merging profiles: #{app_profiles.inspect}"
|
|
143
|
+
Rails.logger.debug "[Configuration] Merging profiles: #{app_profiles.inspect}" if @verbose_logging
|
|
144
144
|
@profiles = @profiles.deep_merge(app_profiles)
|
|
145
145
|
end
|
|
146
146
|
rescue StandardError => e
|
|
@@ -150,8 +150,8 @@ module ActionMCP
|
|
|
150
150
|
end
|
|
151
151
|
|
|
152
152
|
# Apply the active profile
|
|
153
|
-
Rails.logger.info "[ActionMCP] Loaded profiles: #{@profiles.keys.join(', ')}"
|
|
154
|
-
Rails.logger.info "[ActionMCP] Using profile: #{@active_profile}"
|
|
153
|
+
Rails.logger.info "[ActionMCP] Loaded profiles: #{@profiles.keys.join(', ')}" if @verbose_logging
|
|
154
|
+
Rails.logger.info "[ActionMCP] Using profile: #{@active_profile}" if @verbose_logging
|
|
155
155
|
use_profile(@active_profile)
|
|
156
156
|
|
|
157
157
|
# Restore preserved settings
|
data/lib/action_mcp/version.rb
CHANGED