diff options
author | Zachary Scott <e@zzak.io> | 2014-08-22 03:06:53 -0700 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2014-08-22 03:06:53 -0700 |
commit | 6fa5f85eb4c0bd27e58a09a9b8d8447098c38fdc (patch) | |
tree | 1aefbf0ebbda23cc6e82eb8d2d62435acbdc04e4 /guides | |
parent | 880a1d8ac96669da92d86873b4203b1f9194e21a (diff) | |
parent | 2dd22ead210f81a04ac0afc9ce9ed95083250602 (diff) | |
download | rails-6fa5f85eb4c0bd27e58a09a9b8d8447098c38fdc.tar.gz rails-6fa5f85eb4c0bd27e58a09a9b8d8447098c38fdc.tar.bz2 rails-6fa5f85eb4c0bd27e58a09a9b8d8447098c38fdc.zip |
Merge pull request #16634 from tgxworld/missing_space
Missing space. [CI SKIP]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/debugging_rails_applications.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/debugging_rails_applications.md b/guides/source/debugging_rails_applications.md index 53b8566d83..88c6210296 100644 --- a/guides/source/debugging_rails_applications.md +++ b/guides/source/debugging_rails_applications.md @@ -211,7 +211,7 @@ logger.tagged("BCX") { logger.tagged("Jason") { logger.info "Stuff" } } # Logs " ### Impact of Logs on Performance Logging will always have a small impact on performance of your rails app, - particularly when logging to disk.However, there are a few subtleties: + particularly when logging to disk. However, there are a few subtleties: Using the `:debug` level will have a greater performance penalty than `:fatal`, as a far greater number of strings are being evaluated and written to the |