debugging_rails_applications.md 34.5 KB
Newer Older
1
**DO NOT READ THIS FILE ON GITHUB, GUIDES ARE PUBLISHED ON https://guides.rubyonrails.org.**
X
Xavier Noria 已提交
2

3 4
Debugging Rails Applications
============================
5

6 7 8
This guide introduces techniques for debugging Ruby on Rails applications.

After reading this guide, you will know:
9

10 11 12 13
* The purpose of debugging.
* How to track down problems and issues in your application that your tests aren't identifying.
* The different ways of debugging.
* How to analyze the stack trace.
14

15
--------------------------------------------------------------------------------
16

17 18
View Helpers for Debugging
--------------------------
19

20
One common task is to inspect the contents of a variable. Rails provides three different ways to do this:
21

22 23 24
* `debug`
* `to_yaml`
* `inspect`
25

26
### `debug`
27

J
Jonathan Roes 已提交
28
The `debug` helper will return a \<pre> tag that renders the object using the YAML format. This will generate human-readable data from any object. For example, if you have this code in a view:
29

30
```html+erb
31
<%= debug @article %>
32 33
<p>
  <b>Title:</b>
34
  <%= @article.title %>
35
</p>
36
```
37 38 39

You'll see something like this:

40
```yaml
41
--- !ruby/object Article
42 43 44 45 46 47 48 49 50 51 52
attributes:
  updated_at: 2008-09-05 22:55:47
  body: It's a very helpful guide for debugging your Rails app.
  title: Rails debugging guide
  published: t
  id: "1"
  created_at: 2008-09-05 22:55:47
attributes_cache: {}


Title: Rails debugging guide
53
```
54

55
### `to_yaml`
56

Z
Zachary Scott 已提交
57
Alternatively, calling `to_yaml` on any object converts it to YAML. You can pass this converted object into the `simple_format` helper method to format the output. This is how `debug` does its magic.
58

59
```html+erb
60
<%= simple_format @article.to_yaml %>
61 62
<p>
  <b>Title:</b>
63
  <%= @article.title %>
64
</p>
65
```
66

67
The above code will render something like this:
68

69
```yaml
70
--- !ruby/object Article
71 72 73 74 75 76 77 78 79 80
attributes:
updated_at: 2008-09-05 22:55:47
body: It's a very helpful guide for debugging your Rails app.
title: Rails debugging guide
published: t
id: "1"
created_at: 2008-09-05 22:55:47
attributes_cache: {}

Title: Rails debugging guide
81
```
82

83
### `inspect`
84

85
Another useful method for displaying object values is `inspect`, especially when working with arrays or hashes. This will print the object value as a string. For example:
86

87
```html+erb
88 89 90
<%= [1, 2, 3, 4, 5].inspect %>
<p>
  <b>Title:</b>
91
  <%= @article.title %>
92
</p>
93
```
94

95
Will render:
96

97
```
98 99 100
[1, 2, 3, 4, 5]

Title: Rails debugging guide
101
```
102

103 104
The Logger
----------
105 106 107

It can also be useful to save information to log files at runtime. Rails maintains a separate log file for each runtime environment.

108
### What is the Logger?
109

110
Rails makes use of the `ActiveSupport::Logger` class to write log information. Other loggers, such as `Log4r`, may also be substituted.
111

112
You can specify an alternative logger in `config/application.rb` or any other environment file, for example:
113

114
```ruby
115 116
config.logger = Logger.new(STDOUT)
config.logger = Log4r::Logger.new("Application Log")
117
```
118

119
Or in the `Initializer` section, add _any_ of the following
120

121
```ruby
122 123
Rails.logger = Logger.new(STDOUT)
Rails.logger = Log4r::Logger.new("Application Log")
124
```
125

V
Vijay Dev 已提交
126
TIP: By default, each log is created under `Rails.root/log/` and the log file is named after the environment in which the application is running.
127

128
### Log Levels
129

130
When something is logged, it's printed into the corresponding log if the log
131
level of the message is equal to or higher than the configured log level. If you
132 133 134 135 136 137
want to know the current log level, you can call the `Rails.logger.level`
method.

The available log levels are: `:debug`, `:info`, `:warn`, `:error`, `:fatal`,
and `:unknown`, corresponding to the log level numbers from 0 up to 5,
respectively. To change the default log level, use
138

139
```ruby
140
config.log_level = :warn # In any environment initializer, or
141
Rails.logger.level = 0 # at any time
142
```
143

144
This is useful when you want to log under development or staging without flooding your production log with unnecessary information.
145

146
TIP: The default Rails log level is `debug` in all environments.
147

148
### Sending Messages
149

150
To write in the current log use the `logger.(debug|info|warn|error|fatal|unknown)` method from within a controller, model, or mailer:
151

152
```ruby
153 154 155
logger.debug "Person attributes hash: #{@person.attributes.inspect}"
logger.info "Processing the request..."
logger.fatal "Terminating application, raised unrecoverable error!!!"
156
```
157 158 159

Here's an example of a method instrumented with extra logging:

160
```ruby
161
class ArticlesController < ApplicationController
162 163 164
  # ...

  def create
165
    @article = Article.new(article_params)
166
    logger.debug "New article: #{@article.attributes.inspect}"
R
Robin Dupret 已提交
167
    logger.debug "Article should be valid: #{@article.valid?}"
168 169 170

    if @article.save
      logger.debug "The article was saved and now the user is going to be redirected..."
171
      redirect_to @article, notice: 'Article was successfully created.'
172
    else
173
      render :new
174 175 176 177
    end
  end

  # ...
178 179 180 181 182

  private
    def article_params
      params.require(:article).permit(:title, :body, :published)
    end
183
end
184
```
185

J
Jonathan Roes 已提交
186
Here's an example of the log generated when this controller action is executed:
187

188
```
189
Started POST "/articles" for 127.0.0.1 at 2018-10-18 20:09:23 -0400
190
Processing by ArticlesController#create as HTML
191 192
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"XLveDrKzF1SwaiNRPTaMtkrsTzedtebPPkmxEFIU0ordLjICSnXsSNfrdMa4ccyBjuGwnnEiQhEoMN6H1Gtz3A==", "article"=>{"title"=>"Debugging Rails", "body"=>"I'm learning how to print in logs.", "published"=>"0"}, "commit"=>"Create Article"}
New article: {"id"=>nil, "title"=>"Debugging Rails", "body"=>"I'm learning how to print in logs.", "published"=>false, "created_at"=>nil, "updated_at"=>nil}
R
Robin Dupret 已提交
193
Article should be valid: true
194 195 196 197 198 199
   (0.0ms)  begin transaction
  ↳ app/controllers/articles_controller.rb:31
  Article Create (0.5ms)  INSERT INTO "articles" ("title", "body", "published", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["title", "Debugging Rails"], ["body", "I'm learning how to print in logs."], ["published", 0], ["created_at", "2018-10-19 00:09:23.216549"], ["updated_at", "2018-10-19 00:09:23.216549"]]
  ↳ app/controllers/articles_controller.rb:31
   (2.3ms)  commit transaction
  ↳ app/controllers/articles_controller.rb:31
200
The article was saved and now the user is going to be redirected...
201 202
Redirected to http://localhost:3000/articles/1
Completed 302 Found in 4ms (ActiveRecord: 0.8ms)
203
```
204

J
Jonathan Roes 已提交
205
Adding extra logging like this makes it easy to search for unexpected or unusual behavior in your logs. If you add extra logging, be sure to make sensible use of log levels to avoid filling your production logs with useless trivia.
V
Vijay Dev 已提交
206

207 208 209 210 211 212 213 214 215 216 217 218 219
### Verbose Query Logs

When looking at database query output in logs, it may not be immediately clear why multiple database queries are triggered when a single method is called:

```
irb(main):001:0> Article.pamplemousse
  Article Load (0.4ms)  SELECT "articles".* FROM "articles"
  Comment Load (0.2ms)  SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ?  [["article_id", 1]]
  Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ?  [["article_id", 2]]
  Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ?  [["article_id", 3]]
=> #<Comment id: 2, author: "1", body: "Well, actually...", article_id: 1, created_at: "2018-10-19 00:56:10", updated_at: "2018-10-19 00:56:10">
```

220
After running `ActiveRecord::Base.verbose_query_logs = true` in the `bin/rails console` session to enable verbose query logs and running the method again, it becomes obvious what single line of code is generating all these discrete database calls:
221 222 223 224 225 226 227 228 229 230 231 232 233 234

```
irb(main):003:0> Article.pamplemousse
  Article Load (0.2ms)  SELECT "articles".* FROM "articles"
  ↳ app/models/article.rb:5
  Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ?  [["article_id", 1]]
  ↳ app/models/article.rb:6
  Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ?  [["article_id", 2]]
  ↳ app/models/article.rb:6
  Comment Load (0.1ms)  SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ?  [["article_id", 3]]
  ↳ app/models/article.rb:6
=> #<Comment id: 2, author: "1", body: "Well, actually...", article_id: 1, created_at: "2018-10-19 00:56:10", updated_at: "2018-10-19 00:56:10">
```

N
Nick Coyne 已提交
235
Below each database statement you can see arrows pointing to the specific source filename (and line number) of the method that resulted in a database call. This can help you identify and address performance problems caused by N+1 queries: single database queries that generates multiple additional queries.
236 237 238 239 240

Verbose query logs are enabled by default in the development environment logs after Rails 5.2.

WARNING: We recommend against using this setting in production environments. It relies on Ruby's `Kernel#caller` method which tends to allocate a lot of memory in order to generate stacktraces of method calls.

241
### Tagged Logging
242

243
When running multi-user, multi-account applications, it's often useful
Y
Yves Senn 已提交
244
to be able to filter the logs using some custom rules. `TaggedLogging`
245
in Active Support helps you do exactly that by stamping log lines with subdomains, request ids, and anything else to aid debugging such applications.
V
Vijay Dev 已提交
246

247
```ruby
V
Vijay Dev 已提交
248 249 250 251
logger = ActiveSupport::TaggedLogging.new(Logger.new(STDOUT))
logger.tagged("BCX") { logger.info "Stuff" }                            # Logs "[BCX] Stuff"
logger.tagged("BCX", "Jason") { logger.info "Stuff" }                   # Logs "[BCX] [Jason] Stuff"
logger.tagged("BCX") { logger.tagged("Jason") { logger.info "Stuff" } } # Logs "[BCX] [Jason] Stuff"
252
```
253

254
### Impact of Logs on Performance
255

256
Logging will always have a small impact on the performance of your Rails app,
257
particularly when logging to disk. Additionally, there are a few subtleties:
258 259

Using the `:debug` level will have a greater performance penalty than `:fatal`,
260 261
as a far greater number of strings are being evaluated and written to the
log output (e.g. disk).
262

263
Another potential pitfall is too many calls to `Logger` in your code:
264 265 266 267 268

```ruby
logger.debug "Person attributes hash: #{@person.attributes.inspect}"
```

269
In the above example, there will be a performance impact even if the allowed
R
Robin Dupret 已提交
270 271
output level doesn't include debug. The reason is that Ruby has to evaluate
these strings, which includes instantiating the somewhat heavy `String` object
272
and interpolating the variables.
273

R
Robin Dupret 已提交
274
Therefore, it's recommended to pass blocks to the logger methods, as these are
275
only evaluated if the output level is the same as — or included in — the allowed level
276 277 278
(i.e. lazy loading). The same code rewritten would be:

```ruby
V
Vipul A M 已提交
279
logger.debug {"Person attributes hash: #{@person.attributes.inspect}"}
280 281
```

282 283
The contents of the block, and therefore the string interpolation, are only
evaluated if debug is enabled. This performance savings are only really
284 285
noticeable with large amounts of logging, but it's a good practice to employ.

286 287 288
INFO: This section was written by [Jon Cairns at a StackOverflow answer](https://stackoverflow.com/questions/16546730/logging-in-rails-is-there-any-performance-hit/16546935#16546935)
and it is licensed under [cc by-sa 4.0](https://creativecommons.org/licenses/by-sa/4.0/).

289
Debugging with the `byebug` gem
290
---------------------------------
291

292 293 294 295 296
When your code is behaving in unexpected ways, you can try printing to logs or
the console to diagnose the problem. Unfortunately, there are times when this
sort of error tracking is not effective in finding the root cause of a problem.
When you actually need to journey into your running source code, the debugger
is your best companion.
297

298 299
The debugger can also help you if you want to learn about the Rails source code
but don't know where to start. Just debug any request to your application and
300 301
use this guide to learn how to move from the code you have written into the
underlying Rails code.
302

303
### Setup
304

305 306
You can use the `byebug` gem to set breakpoints and step through live code in
Rails. To install it, just run:
307

P
Prem Sichanugrist 已提交
308
```bash
309
$ gem install byebug
310
```
311

312 313
Inside any Rails application you can then invoke the debugger by calling the
`byebug` method.
314

315 316
Here's an example:

317
```ruby
318 319
class PeopleController < ApplicationController
  def new
320
    byebug
321 322 323
    @person = Person.new
  end
end
324
```
325

326
### The Shell
327

328 329 330 331
As soon as your application calls the `byebug` method, the debugger will be
started in a debugger shell inside the terminal window where you launched your
application server, and you will be placed at the debugger's prompt `(byebug)`.
Before the prompt, the code around the line that is about to be run will be
332
displayed and the current line will be marked by '=>', like this:
333

334
```
335
[1, 10] in /PathTo/project/app/controllers/articles_controller.rb
336
    3:
337 338
    4:   # GET /articles
    5:   # GET /articles.json
339 340
    6:   def index
    7:     byebug
341
=>  8:     @articles = Article.find_recent
342 343 344
    9:
   10:     respond_to do |format|
   11:       format.html # index.html.erb
345
   12:       format.json { render json: @articles }
346

347
(byebug)
348
```
349

350 351 352
If you got there by a browser request, the browser tab containing the request
will be hung until the debugger has finished and the trace has finished
processing the entire request.
353

354 355
For example:

356
```
357
=> Booting Puma
358
=> Rails 6.0.0 application starting in development
359
=> Run `bin/rails server --help` for more startup options
360
Puma starting in single mode...
361
* Version 3.12.1 (ruby 2.5.7-p206), codename: Llamas in Pajamas
362
* Min threads: 5, max threads: 5
363 364
* Environment: development
* Listening on tcp://localhost:3000
365
Use Ctrl-C to stop
366 367
Started GET "/" for 127.0.0.1 at 2014-04-11 13:11:48 +0200
  ActiveRecord::SchemaMigration Load (0.2ms)  SELECT "schema_migrations".* FROM "schema_migrations"
368
Processing by ArticlesController#index as HTML
369

370
[3, 12] in /PathTo/project/app/controllers/articles_controller.rb
371
    3:
372 373
    4:   # GET /articles
    5:   # GET /articles.json
374 375
    6:   def index
    7:     byebug
376
=>  8:     @articles = Article.find_recent
377 378 379
    9:
   10:     respond_to do |format|
   11:       format.html # index.html.erb
380
   12:       format.json { render json: @articles }
381
(byebug)
382
```
383

384
Now it's time to explore your application. A good place to start is
385 386
by asking the debugger for help. Type: `help`

387
```
388
(byebug) help
389

390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
  break      -- Sets breakpoints in the source code
  catch      -- Handles exception catchpoints
  condition  -- Sets conditions on breakpoints
  continue   -- Runs until program ends, hits a breakpoint or reaches a line
  debug      -- Spawns a subdebugger
  delete     -- Deletes breakpoints
  disable    -- Disables breakpoints or displays
  display    -- Evaluates expressions every time the debugger stops
  down       -- Moves to a lower frame in the stack trace
  edit       -- Edits source files
  enable     -- Enables breakpoints or displays
  finish     -- Runs the program until frame returns
  frame      -- Moves to a frame in the call stack
  help       -- Helps you using byebug
  history    -- Shows byebug's history of commands
  info       -- Shows several informations about the program being debugged
  interrupt  -- Interrupts the program
  irb        -- Starts an IRB session
  kill       -- Sends a signal to the current process
  list       -- Lists lines of source code
  method     -- Shows methods of an object, class or module
  next       -- Runs one or more lines of code
  pry        -- Starts a Pry session
  quit       -- Exits byebug
  restart    -- Restarts the debugged program
  save       -- Saves current byebug session to a file
  set        -- Modifies byebug settings
  show       -- Shows byebug settings
  source     -- Restores a previously saved byebug session
  step       -- Steps into blocks or methods one or more times
  thread     -- Commands to manipulate threads
  tracevar   -- Enables tracing of a global variable
  undisplay  -- Stops displaying all or some expressions when program stops
  untracevar -- Stops tracing a global variable
  up         -- Moves to a higher frame in the stack trace
  var        -- Shows variables and its values
  where      -- Displays the backtrace
427

428
(byebug)
429
```
430

431
To see the previous ten lines you should type `list-` (or `l-`).
432

433
```
434
(byebug) l-
435

436 437 438
[1, 10] in /PathTo/project/app/controllers/articles_controller.rb
   1  class ArticlesController < ApplicationController
   2    before_action :set_article, only: [:show, :edit, :update, :destroy]
439
   3
440 441
   4    # GET /articles
   5    # GET /articles.json
442 443
   6    def index
   7      byebug
444
   8      @articles = Article.find_recent
445
   9
446
   10     respond_to do |format|
447
```
448

449 450 451
This way you can move inside the file and see the code above the line where you
added the `byebug` call. Finally, to see where you are in the code again you can
type `list=`
452

453
```
454
(byebug) list=
455

456
[3, 12] in /PathTo/project/app/controllers/articles_controller.rb
457
    3:
458 459
    4:   # GET /articles
    5:   # GET /articles.json
460 461
    6:   def index
    7:     byebug
462
=>  8:     @articles = Article.find_recent
463 464 465
    9:
   10:     respond_to do |format|
   11:       format.html # index.html.erb
466
   12:       format.json { render json: @articles }
467
(byebug)
468
```
469

470
### The Context
471

472 473
When you start debugging your application, you will be placed in different
contexts as you go through the different parts of the stack.
474

475 476 477
The debugger creates a context when a stopping point or an event is reached. The
context has information about the suspended program which enables the debugger
to inspect the frame stack, evaluate variables from the perspective of the
478
debugged program, and know the place where the debugged program is stopped.
479

480 481 482 483
At any time you can call the `backtrace` command (or its alias `where`) to print
the backtrace of the application. This can be very helpful to know how you got
where you are. If you ever wondered about how you got somewhere in your code,
then `backtrace` will supply the answer.
484

485
```
486
(byebug) where
487
--> #0  ArticlesController.index
488 489
      at /PathToProject/app/controllers/articles_controller.rb:8
    #1  ActionController::BasicImplicitRender.send_action(method#String, *args#Array)
490
      at /PathToGems/actionpack-5.1.0/lib/action_controller/metal/basic_implicit_render.rb:4
491
    #2  AbstractController::Base.process_action(action#NilClass, *args#Array)
492
      at /PathToGems/actionpack-5.1.0/lib/abstract_controller/base.rb:181
493
    #3  ActionController::Rendering.process_action(action, *args)
494
      at /PathToGems/actionpack-5.1.0/lib/action_controller/metal/rendering.rb:30
495
...
496
```
497

498
The current frame is marked with `-->`. You can move anywhere you want in this
499
trace (thus changing the context) by using the `frame n` command, where _n_ is
500 501
the specified frame number. If you do that, `byebug` will display your new
context.
502

503
```
504
(byebug) frame 2
505

506
[176, 185] in /PathToGems/actionpack-5.1.0/lib/abstract_controller/base.rb
507 508 509 510 511 512 513 514 515 516
   176:       # is the intended way to override action dispatching.
   177:       #
   178:       # Notice that the first argument is the method to be dispatched
   179:       # which is *not* necessarily the same as the action name.
   180:       def process_action(method_name, *args)
=> 181:         send_action(method_name, *args)
   182:       end
   183:
   184:       # Actually call the method associated with the action. Override
   185:       # this method if you wish to change how action methods are called,
517
(byebug)
518
```
519

520 521
The available variables are the same as if you were running the code line by
line. After all, that's what debugging is.
522

523 524 525 526
You can also use `up [n]` and `down [n]` commands in order to change the context
_n_ frames up or down the stack respectively. _n_ defaults to one. Up in this
case is towards higher-numbered stack frames, and down is towards lower-numbered
stack frames.
527

528
### Threads
529

A
Anthony Crumley 已提交
530
The debugger can list, stop, resume, and switch between running threads by using
R
Robin Dupret 已提交
531
the `thread` command (or the abbreviated `th`). This command has a handful of
532
options:
533

534
* `thread`: shows the current thread.
535 536 537 538 539
* `thread list`: is used to list all threads and their statuses. The current
thread is marked with a plus (+) sign.
* `thread stop n`: stops thread _n_.
* `thread resume n`: resumes thread _n_.
* `thread switch n`: switches the current thread context to _n_.
540

541 542
This command is very helpful when you are debugging concurrent threads and need
to verify that there are no race conditions in your code.
543

544
### Inspecting Variables
545

546 547
Any expression can be evaluated in the current context. To evaluate an
expression, just type it!
548

R
Robin Dupret 已提交
549
This example shows how you can print the instance variables defined within the
550
current context:
551

552
```
553
[3, 12] in /PathTo/project/app/controllers/articles_controller.rb
554
    3:
555 556
    4:   # GET /articles
    5:   # GET /articles.json
557 558
    6:   def index
    7:     byebug
559
=>  8:     @articles = Article.find_recent
560 561 562
    9:
   10:     respond_to do |format|
   11:       format.html # index.html.erb
563
   12:       format.json { render json: @articles }
564

565
(byebug) instance_variables
566 567 568
[:@_action_has_layout, :@_routes, :@_request, :@_response, :@_lookup_context,
 :@_action_name, :@_response_body, :@marked_for_same_origin_verification,
 :@_config]
569
```
570

571 572 573 574
As you may have figured out, all of the variables that you can access from a
controller are displayed. This list is dynamically updated as you execute code.
For example, run the next line using `next` (you'll learn more about this
command later in this guide).
575

576
```
577
(byebug) next
578

579 580
[5, 14] in /PathTo/project/app/controllers/articles_controller.rb
   5     # GET /articles.json
581 582
   6     def index
   7       byebug
583
   8       @articles = Article.find_recent
584
   9
585 586 587
=> 10      respond_to do |format|
   11        format.html # index.html.erb
   12        format.json { render json: @articles }
588 589 590 591
   13      end
   14    end
   15
(byebug)
592
```
593 594 595

And then ask again for the instance_variables:

596
```
597
(byebug) instance_variables
598 599 600
[:@_action_has_layout, :@_routes, :@_request, :@_response, :@_lookup_context,
 :@_action_name, :@_response_body, :@marked_for_same_origin_verification,
 :@_config, :@articles]
601
```
602

603 604
Now `@articles` is included in the instance variables, because the line defining
it was executed.
605

606
TIP: You can also step into **irb** mode with the command `irb` (of course!).
607
This will start an irb session within the context you invoked it.
608

609
The `var` method is the most convenient way to show variables and their values.
610
Let's have `byebug` help us with it.
611

612
```
613
(byebug) help var
614 615 616 617 618 619 620 621 622 623 624 625 626

  [v]ar <subcommand>

  Shows variables and its values


  var all      -- Shows local, global and instance variables of self.
  var args     -- Information about arguments of the current scope
  var const    -- Shows constants of an object.
  var global   -- Shows global variables.
  var instance -- Shows instance variables of self or a specific object.
  var local    -- Shows local variables in current scope.

627
```
628

629
This is a great way to inspect the values of the current context variables. For
630
example, to check that we have no local variables currently defined:
631

632
```
633
(byebug) var local
634
(byebug)
635
```
636 637 638

You can also inspect for an object method this way:

639
```
640
(byebug) var instance Article.new
641
@_start_transaction_state = nil
642 643
@aggregation_cache = {}
@association_cache = {}
644 645 646 647 648 649 650
@attributes = #<ActiveRecord::AttributeSet:0x007fd0682a9b18 @attributes={"id"=>#<ActiveRecord::Attribute::FromDatabase:0x007fd0682a9a00 @name="id", @value_be...
@destroyed = false
@destroyed_by_association = nil
@marked_for_destruction = false
@new_record = true
@readonly = false
@transaction_state = nil
651
```
652

653
You can also use `display` to start watching variables. This is a good way of
654
tracking the values of a variable while the execution goes on.
655

656
```
657 658
(byebug) display @articles
1: @articles = nil
659
```
660

661
The variables inside the displayed list will be printed with their values after
662
you move in the stack. To stop displaying a variable use `undisplay n` where
663
_n_ is the variable number (1 in the last example).
664

665
### Step by Step
666

667
Now you should know where you are in the running trace and be able to print the
668
available variables. But let's continue and move on with the application
669
execution.
670

671
Use `step` (abbreviated `s`) to continue running your program until the next
672 673 674
logical stopping point and return control to the debugger. `next` is similar to
`step`, but while `step` stops at the next line of code executed, doing just a
single step, `next` moves to the next line without descending inside methods.
675

676
For example, consider the following situation:
677

678
```
679
Started GET "/" for 127.0.0.1 at 2014-04-11 13:39:23 +0200
680
Processing by ArticlesController#index as HTML
681

682
[1, 6] in /PathToProject/app/models/article.rb
683
   1: class Article < ApplicationRecord
684 685 686 687 688
   2:   def self.find_recent(limit = 10)
   3:     byebug
=> 4:     where('created_at > ?', 1.week.ago).limit(limit)
   5:   end
   6: end
689

690
(byebug)
691
```
692

693 694 695
If we use `next`, we won't go deep inside method calls. Instead, `byebug` will
go to the next line within the same context. In this case, it is the last line
of the current method, so `byebug` will return to the next line of the caller
R
Robin Dupret 已提交
696 697
method.

698
```
699
(byebug) next
700
[4, 13] in /PathToProject/app/controllers/articles_controller.rb
701 702
    4:   # GET /articles
    5:   # GET /articles.json
703
    6:   def index
704
    7:     @articles = Article.find_recent
705 706 707
    8:
=>  9:     respond_to do |format|
   10:       format.html # index.html.erb
708
   11:       format.json { render json: @articles }
709 710 711
   12:     end
   13:   end

712
(byebug)
713
```
714

715 716
If we use `step` in the same situation, `byebug` will literally go to the next
Ruby instruction to be executed -- in this case, Active Support's `week` method.
717

718
```
719
(byebug) step
720

721
[49, 58] in /PathToGems/activesupport-5.1.0/lib/active_support/core_ext/numeric/time.rb
722 723 724 725 726
   49:
   50:   # Returns a Duration instance matching the number of weeks provided.
   51:   #
   52:   #   2.weeks # => 14 days
   53:   def weeks
727
=> 54:     ActiveSupport::Duration.weeks(self)
728 729 730 731
   55:   end
   56:   alias :week :weeks
   57:
   58:   # Returns a Duration instance matching the number of fortnights provided.
732
(byebug)
733
```
734

735
This is one of the best ways to find bugs in your code.
736

737 738
TIP: You can also use `step n` or `next n` to move forward `n` steps at once.

739
### Breakpoints
740

741 742
A breakpoint makes your application stop whenever a certain point in the program
is reached. The debugger shell is invoked in that line.
743

744 745
You can add breakpoints dynamically with the command `break` (or just `b`).
There are 3 possible ways of adding breakpoints manually:
746

747 748 749 750
* `break n`: set breakpoint in line number _n_ in the current source file.
* `break file:n [if expression]`: set breakpoint in line number _n_ inside
file named _file_. If an _expression_ is given it must evaluated to _true_ to
fire up the debugger.
751 752
* `break class(.|\#)method [if expression]`: set breakpoint in _method_ (. and
\# for class and instance method respectively) defined in _class_. The
753
_expression_ works the same way as with file:n.
754

755 756
For example, in the previous situation

757
```
758
[4, 13] in /PathToProject/app/controllers/articles_controller.rb
759 760
    4:   # GET /articles
    5:   # GET /articles.json
761
    6:   def index
762
    7:     @articles = Article.find_recent
763 764 765
    8:
=>  9:     respond_to do |format|
   10:       format.html # index.html.erb
766
   11:       format.json { render json: @articles }
767 768 769 770
   12:     end
   13:   end

(byebug) break 11
V
Vipul A M 已提交
771
Successfully created breakpoint with id 1
772

773
```
774

775 776
Use `info breakpoints` to list breakpoints. If you supply a number, it lists
that breakpoint. Otherwise it lists all breakpoints.
777

778
```
779
(byebug) info breakpoints
780
Num Enb What
781
1   y   at /PathToProject/app/controllers/articles_controller.rb:11
782
```
783

784
To delete breakpoints: use the command `delete n` to remove the breakpoint
785 786
number _n_. If no number is specified, it deletes all breakpoints that are
currently active.
787

788
```
789 790
(byebug) delete 1
(byebug) info breakpoints
791
No breakpoints.
792
```
793 794 795

You can also enable or disable breakpoints:

796 797
* `enable breakpoints [n [m [...]]]`: allows a specific breakpoint list or all
breakpoints to stop your program. This is the default state when you create a
798
breakpoint.
799 800
* `disable breakpoints [n [m [...]]]`: make certain (or all) breakpoints have
no effect on your program.
801

802
### Catching Exceptions
803

804 805 806
The command `catch exception-name` (or just `cat exception-name`) can be used to
intercept an exception of type _exception-name_ when there would otherwise be no
handler for it.
807

808
To list all active catchpoints use `catch`.
809

810
### Resuming Execution
811

812 813 814
There are two ways to resume execution of an application that is stopped in the
debugger:

815 816 817 818 819 820 821
* `continue [n]`: resumes program execution at the address where your script last
stopped; any breakpoints set at that address are bypassed. The optional argument
`n` allows you to specify a line number to set a one-time breakpoint which is
deleted when that breakpoint is reached.
* `finish [n]`: execute until the selected stack frame returns. If no frame
number is given, the application will run until the currently selected frame
returns. The currently selected frame starts out the most-recent frame or 0 if
A
Anthony Crumley 已提交
822
no frame positioning (e.g up, down, or frame) has been performed. If a frame
823
number is given it will run until the specified frame returns.
824

825
### Editing
826 827 828

Two commands allow you to open code from the debugger into an editor:

829 830
* `edit [file:n]`: edit file named _file_ using the editor specified by the
EDITOR environment variable. A specific line _n_ can also be given.
831

832
### Quitting
833

J
Jon Atack 已提交
834 835
To exit the debugger, use the `quit` command (abbreviated to `q`). Or, type `q!`
to bypass the `Really quit? (y/n)` prompt and exit unconditionally.
836

837 838
A simple quit tries to terminate all threads in effect. Therefore your server
will be stopped and you will have to start it again.
839

840
### Settings
841

842
`byebug` has a few available options to tweak its behavior:
843

844 845 846 847 848 849
```
(byebug) help set

  set <setting> <value>

  Modifies byebug settings
850

851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874
  Boolean values take "on", "off", "true", "false", "1" or "0". If you
  don't specify a value, the boolean setting will be enabled. Conversely,
  you can use "set no<setting>" to disable them.

  You can see these environment settings with the "show" command.

  List of supported settings:

  autosave       -- Automatically save command history record on exit
  autolist       -- Invoke list command on every stop
  width          -- Number of characters per line in byebug's output
  autoirb        -- Invoke IRB on every stop
  basename       -- <file>:<line> information after every stop uses short paths
  linetrace      -- Enable line execution tracing
  autopry        -- Invoke Pry on every stop
  stack_on_error -- Display stack trace when `eval` raises an exception
  fullpath       -- Display full file names in backtraces
  histfile       -- File where cmd history is saved to. Default: ./.byebug_history
  listsize       -- Set number of source lines to list by default
  post_mortem    -- Enable/disable post-mortem mode
  callstyle      -- Set how you want method call parameters to be displayed
  histsize       -- Maximum number of commands that can be stored in byebug history
  savefile       -- File where settings are saved to. Default: ~/.byebug_save
```
875

876 877
TIP: You can save these settings in an `.byebugrc` file in your home directory.
The debugger reads these global settings when it starts. For example:
878

879
```
880
set callstyle short
881
set listsize 25
882
```
883

884 885 886 887 888 889 890 891 892
Debugging with the `web-console` gem
------------------------------------

Web Console is a bit like `byebug`, but it runs in the browser. In any page you
are developing, you can request a console in the context of a view or a
controller. The console would be rendered next to your HTML content.

### Console

893
Inside any controller action or view, you can invoke the console by
894 895 896 897 898
calling the `console` method.

For example, in a controller:

```ruby
899
class PostsController < ApplicationController
900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918
  def new
    console
    @post = Post.new
  end
end
```

Or in a view:

```html+erb
<% console %>

<h2>New Post</h2>
```

This will render a console inside your view. You don't need to care about the
location of the `console` call; it won't be rendered on the spot of its
invocation but next to your HTML content.

919
The console executes pure Ruby code: You can define and instantiate
A
Anthony Crumley 已提交
920
custom classes, create new models, and inspect variables.
921 922 923 924 925 926 927 928 929 930 931 932

NOTE: Only one console can be rendered per request. Otherwise `web-console`
will raise an error on the second `console` invocation.

### Inspecting Variables

You can invoke `instance_variables` to list all the instance variables
available in your context. If you want to list all the local variables, you can
do that with `local_variables`.

### Settings

933
* `config.web_console.allowed_ips`: Authorized list of IPv4 or IPv6
934 935 936 937 938 939 940
addresses and networks (defaults: `127.0.0.1/8, ::1`).
* `config.web_console.whiny_requests`: Log a message when a console rendering
is prevented (defaults: `true`).

Since `web-console` evaluates plain Ruby code remotely on the server, don't try
to use it in production.

941 942
Debugging Memory Leaks
----------------------
943

944
A Ruby application (on Rails or not), can leak memory — either in the Ruby code
945
or at the C code level.
946

J
Jesse Waites 已提交
947
In this section, you will learn how to find and fix such leaks by using tools
948
such as Valgrind.
949

950
### Valgrind
951

952 953
[Valgrind](http://valgrind.org/) is an application for detecting C-based memory
leaks and race conditions.
954

955 956 957 958
There are Valgrind tools that can automatically detect many memory management
and threading bugs, and profile your programs in detail. For example, if a C
extension in the interpreter calls `malloc()` but doesn't properly call
`free()`, this memory won't be available until the app terminates.
959

960
For further information on how to install Valgrind and use with Ruby, refer to
961
[Valgrind and Ruby](https://blog.evanweaver.com/2008/02/05/valgrind-and-ruby/)
962
by Evan Weaver.
963

964
### Find a Memory Leak
J
Jesse Waites 已提交
965 966 967
There is an excellent article about detecting and fixing memory leaks at Derailed, [which you can read here](https://github.com/schneems/derailed_benchmarks#is-my-app-leaking-memory).


968 969
Plugins for Debugging
---------------------
970

971 972 973
There are some Rails plugins to help you to find errors and debug your
application. Here is a list of useful plugins for debugging:

974
* [Query Trace](https://github.com/ruckus/active-record-query-trace/tree/master) Adds query
975 976 977 978 979 980 981 982 983
origin tracing to your logs.
* [Exception Notifier](https://github.com/smartinez87/exception_notification/tree/master)
Provides a mailer object and a default set of templates for sending email
notifications when errors occur in a Rails application.
* [Better Errors](https://github.com/charliesome/better_errors) Replaces the
standard Rails error page with a new one containing more contextual information,
like source code and variable inspection.
* [RailsPanel](https://github.com/dejan/rails_panel) Chrome extension for Rails
development that will end your tailing of development.log. Have all information
984
about your Rails app requests in the browser — in the Developer Tools panel.
985 986
Provides insight to db/rendering/total times, parameter list, rendered views and
more.
987
* [Pry](https://github.com/pry/pry) An IRB alternative and runtime developer console.
988

989 990
References
----------
991

992
* [byebug Homepage](https://github.com/deivid-rodriguez/byebug)
993
* [web-console Homepage](https://github.com/rails/web-console)