diff --git a/CHANGELOG.md b/CHANGELOG.md index 19811059a..4d9d5fed1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # main +# 0.18.6 / 2020-11-12 + +* Change the logging level for "Executing inline Ruby…" messages to the debug level [#175](https://github.com/bridgetownrb/bridgetown/issues/175) + # 0.18.5 / 2020-11-09 * Bugfix: use HashWithDotAccess when parsing JSON in the HTTP Builder DSL diff --git a/README.md b/README.md index a0603e867..91ef5c330 100644 --- a/README.md +++ b/README.md @@ -113,10 +113,10 @@ Bridgetown is built by: |@jaredcwhite|@jaredmoody|@andrewmcodes|@ParamagicDev|@MikeRogers0| |Portland, OR|Portland, OR|Wilmington, NC|Providence, RI|Ny-Ålesund, Svalbard| -||||| -|:---:|:---:|:---:|:---:| -|@wout|@codemargaret|@julianrubisch|You Next?| -|Brighton, UK|Portland, OR|Vienna, Austria|Anywhere| +|||||| +|:---:|:---:|:---:|:---:|:---:| +|@wout|@codemargaret|@julianrubisch|@ianbayne|You Next?| +|Brighton, UK|Portland, OR|Vienna, Austria|Tokyo, Japan|Anywhere| Interested in joining the Bridgetown Core Team? Send a DM to Jared on the [Bridgetown Community forum](https://community.bridgetownrb.com) and let's chat! diff --git a/bridgetown-core/lib/bridgetown-core/utils/ruby_exec.rb b/bridgetown-core/lib/bridgetown-core/utils/ruby_exec.rb index ac8140b65..a9cf37dee 100644 --- a/bridgetown-core/lib/bridgetown-core/utils/ruby_exec.rb +++ b/bridgetown-core/lib/bridgetown-core/utils/ruby_exec.rb @@ -20,14 +20,14 @@ def search_data_for_ruby_code(convertible, renderer) v.each do |nested_k, nested_v| next unless nested_v.is_a?(Rb) - Bridgetown.logger.warn("Executing inline Ruby…", convertible.relative_path) + Bridgetown.logger.debug("Executing inline Ruby…", convertible.relative_path) convertible.data[k][nested_k] = run(nested_v, convertible, renderer) - Bridgetown.logger.warn("Inline Ruby completed!", convertible.relative_path) + Bridgetown.logger.debug("Inline Ruby completed!", convertible.relative_path) end else - Bridgetown.logger.warn("Executing inline Ruby…", convertible.relative_path) + Bridgetown.logger.debug("Executing inline Ruby…", convertible.relative_path) convertible.data[k] = run(v, convertible, renderer) - Bridgetown.logger.warn("Inline Ruby completed!", convertible.relative_path) + Bridgetown.logger.debug("Inline Ruby completed!", convertible.relative_path) end end end