debugging_rails_applications.md 31.0 KB
Newer Older
1
**DO NOT READ THIS FILE ON GITHUB, GUIDES ARE PUBLISHED ON http://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 21

One common task is to inspect the contents of a variable. In Rails, you can do this with three methods:

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

V
Vijay Dev 已提交
57
Displaying an instance variable, or any other object or method, in YAML format can be achieved this way:
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 `to_yaml` method converts the method to YAML format leaving it more readable, and then the `simple_format` helper is used to render each line as in the console. This is how `debug` method does its magic.
68 69 70

As a result of this, you will have something like this in your view:

71
```yaml
72
--- !ruby/object Article
73 74 75 76 77 78 79 80 81 82
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
83
```
84

85
### `inspect`
86

87
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:
88

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

Will be rendered as follows:

99
```
100 101 102
[1, 2, 3, 4, 5]

Title: Rails debugging guide
103
```
104

105 106
The Logger
----------
107 108 109

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

110
### What is the Logger?
111

112
Rails makes use of the `ActiveSupport::Logger` class to write log information. You can also substitute another logger such as `Log4r` if you wish.
113

114
You can specify an alternative logger in your `environment.rb` or any environment file:
115

116
```ruby
117 118
Rails.logger = Logger.new(STDOUT)
Rails.logger = Log4r::Logger.new("Application Log")
119
```
120

121
Or in the `Initializer` section, add _any_ of the following
122

123
```ruby
124 125
config.logger = Logger.new(STDOUT)
config.logger = Log4r::Logger.new("Application Log")
126
```
127

V
Vijay Dev 已提交
128
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.
129

130
### Log Levels
131

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

134
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
135

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

This is useful when you want to log under development or staging, but you don't want to flood your production log with unnecessary information.

143
TIP: The default Rails log level is `debug` in all environments.
144

145
### Sending Messages
146

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

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

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

157
```ruby
158
class ArticlesController < ApplicationController
159 160 161
  # ...

  def create
162 163
    @article = Article.new(params[:article])
    logger.debug "New article: #{@article.attributes.inspect}"
R
Robin Dupret 已提交
164
    logger.debug "Article should be valid: #{@article.valid?}"
165 166

    if @article.save
R
Robin Dupret 已提交
167
      flash[:notice] =  'Article was successfully created.'
168 169
      logger.debug "The article was saved and now the user is going to be redirected..."
      redirect_to(@article)
170
    else
A
Agis Anastasopoulos 已提交
171
      render action: "new"
172 173 174 175 176
    end
  end

  # ...
end
177
```
178

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

181
```
182
Processing ArticlesController#create (for 127.0.0.1 at 2008-09-08 11:52:54) [POST]
183 184
  Session ID: BAh7BzoMY3NyZl9pZCIlMDY5MWU1M2I1ZDRjODBlMzkyMWI1OTg2NWQyNzViZjYiCmZsYXNoSUM6J0FjdGl
vbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhhc2h7AAY6CkB1c2VkewA=--b18cd92fba90eacf8137e5f6b3b06c4d724596a4
185
  Parameters: {"commit"=>"Create", "article"=>{"title"=>"Debugging Rails",
186
 "body"=>"I'm learning how to print in logs!!!", "published"=>"0"},
187 188
 "authenticity_token"=>"2059c1286e93402e389127b1153204e0d1e275dd", "action"=>"create", "controller"=>"articles"}
New article: {"updated_at"=>nil, "title"=>"Debugging Rails", "body"=>"I'm learning how to print in logs!!!",
R
Robin Dupret 已提交
189 190
 "published"=>false, "created_at"=>nil}
Article should be valid: true
191
  Article Create (0.000443)   INSERT INTO "articles" ("updated_at", "title", "body", "published",
192 193
 "created_at") VALUES('2008-09-08 14:52:54', 'Debugging Rails',
 'I''m learning how to print in logs!!!', 'f', '2008-09-08 14:52:54')
194 195 196
The article was saved and now the user is going to be redirected...
Redirected to # Article:0x20af760>
Completed in 0.01224 (81 reqs/sec) | DB: 0.00044 (3%) | 302 Found [http://localhost/articles]
197
```
198

J
Jonathan Roes 已提交
199
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 已提交
200

201
### Tagged Logging
202

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

207
```ruby
V
Vijay Dev 已提交
208 209 210 211
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"
212
```
213

214
### Impact of Logs on Performance
R
Robin Dupret 已提交
215
Logging will always have a small impact on performance of your rails app,
G
Guo Xiang Tan 已提交
216
        particularly when logging to disk. However, there are a few subtleties:
217 218 219 220 221 222 223 224 225 226 227 228

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
      log output (e.g. disk).

Another potential pitfall is that if you have many calls to `Logger` like this
      in your code:

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

R
Robin Dupret 已提交
229 230 231
In the above example, There will be a performance impact even if the allowed
output level doesn't include debug. The reason is that Ruby has to evaluate
these strings, which includes instantiating the somewhat heavy `String` object
232
and interpolating the variables, and which takes time.
R
Robin Dupret 已提交
233 234
Therefore, it's recommended to pass blocks to the logger methods, as these are
only evaluated if the output level is the same or included in the allowed level
235 236 237
(i.e. lazy loading). The same code rewritten would be:

```ruby
V
Vipul A M 已提交
238
logger.debug {"Person attributes hash: #{@person.attributes.inspect}"}
239 240
```

R
Robin Dupret 已提交
241 242
The contents of the block, and therefore the string interpolation, is only
evaluated if debug is enabled. This performance savings is only really
243 244
noticeable with large amounts of logging, but it's a good practice to employ.

245
Debugging with the `byebug` gem
246
---------------------------------
247

248 249 250 251 252
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.
253

254 255 256 257
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
use this guide to learn how to move from the code you have written deeper into
Rails code.
258

259
### Setup
260

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

P
Prem Sichanugrist 已提交
264
```bash
265
$ gem install byebug
266
```
267

268 269
Inside any Rails application you can then invoke the debugger by calling the
`byebug` method.
270

271 272
Here's an example:

273
```ruby
274 275
class PeopleController < ApplicationController
  def new
276
    byebug
277 278 279
    @person = Person.new
  end
end
280
```
281

282
### The Shell
283

284 285 286 287
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
288
displayed and the current line will be marked by '=>'. Like this:
289

290
```
291
[1, 10] in /PathTo/project/app/controllers/articles_controller.rb
292
    3:
293 294
    4:   # GET /articles
    5:   # GET /articles.json
295 296
    6:   def index
    7:     byebug
297
=>  8:     @articles = Article.find_recent
298 299 300
    9:
   10:     respond_to do |format|
   11:       format.html # index.html.erb
301
   12:       format.json { render json: @articles }
302

303
(byebug)
304
```
305

306 307 308
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.
309

310 311 312
For example:

```bash
313
=> Booting WEBrick
314
=> Rails 5.0.0 application starting in development on http://0.0.0.0:3000
315 316 317 318 319 320 321 322 323 324
=> Run `rails server -h` for more startup options
=> Notice: server is listening on all interfaces (0.0.0.0). Consider using 127.0.0.1 (--binding option)
=> Ctrl-C to shutdown server
[2014-04-11 13:11:47] INFO  WEBrick 1.3.1
[2014-04-11 13:11:47] INFO  ruby 2.1.1 (2014-02-24) [i686-linux]
[2014-04-11 13:11:47] INFO  WEBrick::HTTPServer#start: pid=6370 port=3000


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"
325
Processing by ArticlesController#index as HTML
326

327
[3, 12] in /PathTo/project/app/controllers/articles_controller.rb
328
    3:
329 330
    4:   # GET /articles
    5:   # GET /articles.json
331 332
    6:   def index
    7:     byebug
333
=>  8:     @articles = Article.find_recent
334 335 336
    9:
   10:     respond_to do |format|
   11:       format.html # index.html.erb
337
   12:       format.json { render json: @articles }
338 339

(byebug)
340
```
341 342 343 344

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

345
```
346
(byebug) help
347 348

byebug 2.7.0
349

350
Type 'help <command-name>' for help on a specific command
351

352 353 354 355 356 357 358 359 360 361 362 363 364 365
Available commands:
backtrace  delete   enable  help       list    pry next  restart  source     up
break      disable  eval    info       method  ps        save     step       var
catch      display  exit    interrupt  next    putl      set      thread
condition  down     finish  irb        p       quit      show     trace
continue   edit     frame   kill       pp      reload    skip     undisplay
```

TIP: To view the help menu for any command use `help <command-name>` at the
debugger prompt. For example: _`help list`_. You can abbreviate any debugging
command by supplying just enough letters to distinguish them from other
commands, so you can also use `l` for the `list` command, for example.

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

367
```
368
(byebug) l-
369

370 371 372
[1, 10] in /PathTo/project/app/controllers/articles_controller.rb
   1  class ArticlesController < ApplicationController
   2    before_action :set_article, only: [:show, :edit, :update, :destroy]
373
   3
374 375
   4    # GET /articles
   5    # GET /articles.json
376 377
   6    def index
   7      byebug
378
   8      @articles = Article.find_recent
379 380 381
   9
   10      respond_to do |format|

382
```
383

384
This way you can move inside the file, being able to see the code above and over
R
Robin Dupret 已提交
385
the line where you added the `byebug` call. Finally, to see where you are in
386
the code again you can type `list=`
387

388
```
389
(byebug) list=
390

391
[3, 12] in /PathTo/project/app/controllers/articles_controller.rb
392
    3:
393 394
    4:   # GET /articles
    5:   # GET /articles.json
395 396
    6:   def index
    7:     byebug
397
=>  8:     @articles = Article.find_recent
398 399 400
    9:
   10:     respond_to do |format|
   11:       format.html # index.html.erb
401
   12:       format.json { render json: @articles }
402 403

(byebug)
404
```
405

406
### The Context
407

408 409
When you start debugging your application, you will be placed in different
contexts as you go through the different parts of the stack.
410

411 412 413 414 415
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
debugged program, and contains information about the place where the debugged
program is stopped.
416

417 418 419 420
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.
421

422
```
423
(byebug) where
424 425
--> #0  ArticlesController.index
      at /PathTo/project/test_app/app/controllers/articles_controller.rb:8
426
    #1  ActionController::ImplicitRender.send_action(method#String, *args#Array)
427
      at /PathToGems/actionpack-5.0.0/lib/action_controller/metal/implicit_render.rb:4
428
    #2  AbstractController::Base.process_action(action#NilClass, *args#Array)
429
      at /PathToGems/actionpack-5.0.0/lib/abstract_controller/base.rb:189
430
    #3  ActionController::Rendering.process_action(action#NilClass, *args#NilClass)
431
      at /PathToGems/actionpack-5.0.0/lib/action_controller/metal/rendering.rb:10
432
...
433
```
434

435 436 437 438
The current frame is marked with `-->`. You can move anywhere you want in this
trace (thus changing the context) by using the `frame _n_` command, where _n_ is
the specified frame number. If you do that, `byebug` will display your new
context.
439

440
```
441
(byebug) frame 2
442

443
[184, 193] in /PathToGems/actionpack-5.0.0/lib/abstract_controller/base.rb
444 445 446 447 448 449 450 451 452 453 454 455
   184:       # is the intended way to override action dispatching.
   185:       #
   186:       # Notice that the first argument is the method to be dispatched
   187:       # which is *not* necessarily the same as the action name.
   188:       def process_action(method_name, *args)
=> 189:         send_action(method_name, *args)
   190:       end
   191:
   192:       # Actually call the method associated with the action. Override
   193:       # this method if you wish to change how action methods are called,

(byebug)
456
```
457

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

461 462 463 464
You can also use `up [n]` (`u` for abbreviated) 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.
465

466
### Threads
467

468
The debugger can list, stop, resume and switch between running threads by using
R
Robin Dupret 已提交
469
the `thread` command (or the abbreviated `th`). This command has a handful of
470
options:
471

472
* `thread` shows the current thread.
473 474
* `thread list` is used to list all threads and their statuses. The plus +
character and the number indicates the current thread of execution.
475 476 477
* `thread stop _n_` stop thread _n_.
* `thread resume _n_` resumes thread _n_.
* `thread switch _n_` switches the current thread context to _n_.
478

479 480 481
This command is very helpful, among other occasions, when you are debugging
concurrent threads and need to verify that there are no race conditions in your
code.
482

483
### Inspecting Variables
484

485 486
Any expression can be evaluated in the current context. To evaluate an
expression, just type it!
487

R
Robin Dupret 已提交
488
This example shows how you can print the instance variables defined within the
489
current context:
490

491
```
492
[3, 12] in /PathTo/project/app/controllers/articles_controller.rb
493
    3:
494 495
    4:   # GET /articles
    5:   # GET /articles.json
496 497
    6:   def index
    7:     byebug
498
=>  8:     @articles = Article.find_recent
499 500 501
    9:
   10:     respond_to do |format|
   11:       format.html # index.html.erb
502
   12:       format.json { render json: @articles }
503

504
(byebug) instance_variables
505 506 507
[:@_action_has_layout, :@_routes, :@_headers, :@_status, :@_request,
 :@_response, :@_env, :@_prefixes, :@_lookup_context, :@_action_name,
 :@_response_body, :@marked_for_same_origin_verification, :@_config]
508
```
509

510 511 512 513
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).
514

515
```
516
(byebug) next
517 518
[5, 14] in /PathTo/project/app/controllers/articles_controller.rb
   5     # GET /articles.json
519 520
   6     def index
   7       byebug
521
   8       @articles = Article.find_recent
522 523 524
   9
=> 10       respond_to do |format|
   11         format.html # index.html.erb
525
   12        format.json { render json: @articles }
526 527 528 529
   13      end
   14    end
   15
(byebug)
530
```
531 532 533

And then ask again for the instance_variables:

534
```
535
(byebug) instance_variables.include? "@articles"
536
true
537
```
538

539
Now `@articles` is included in the instance variables, because the line defining it
540
was executed.
541

542 543 544
TIP: You can also step into **irb** mode with the command `irb` (of course!).
This way an irb session will be started within the context you invoked it. But
be warned: this is an experimental feature.
545

546
The `var` method is the most convenient way to show variables and their values.
J
James T. Perreault 已提交
547
Let's let `byebug` help us with it.
548

549
```
550 551 552 553 554 555
(byebug) help var
v[ar] cl[ass]                   show class variables of self
v[ar] const <object>            show constants of object
v[ar] g[lobal]                  show global variables
v[ar] i[nstance] <object>       show instance variables of object
v[ar] l[ocal]                   show local variables
556
```
557

558
This is a great way to inspect the values of the current context variables. For
559
example, to check that we have no local variables currently defined.
560

561
```
562
(byebug) var local
563
(byebug)
564
```
565 566 567

You can also inspect for an object method this way:

568
```
569
(byebug) var instance Article.new
570 571 572 573
@_start_transaction_state = {}
@aggregation_cache = {}
@association_cache = {}
@attributes = {"id"=>nil, "created_at"=>nil, "updated_at"=>nil}
574
@attributes_cache = {}
575 576
@changed_attributes = nil
...
577
```
578

579 580
TIP: The commands `p` (print) and `pp` (pretty print) can be used to evaluate
Ruby expressions and display the value of variables to the console.
581

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

585
```
586 587
(byebug) display @articles
1: @articles = nil
588
```
589

590 591 592
The variables inside the displaying list will be printed with their values after
you move in the stack. To stop displaying a variable use `undisplay _n_` where
_n_ is the variable number (1 in the last example).
593

594
### Step by Step
595

596 597 598
Now you should know where you are in the running trace and be able to print the
available variables. But lets continue and move on with the application
execution.
599

600 601
Use `step` (abbreviated `s`) to continue running your program until the next
logical stopping point and return control to the debugger.
602

603
You may also use `next` which is similar to step, but function or method calls
604 605 606
that appear within the line of code are executed without stopping.

TIP: You can also use `step n` or `next n` to move forwards `n` steps at once.
607

608 609 610
The difference between `next` and `step` is that `step` stops at the next line
of code executed, doing just a single step, while `next` moves to the next line
without descending inside methods.
611

612
For example, consider the following situation:
613

614
```ruby
615
Started GET "/" for 127.0.0.1 at 2014-04-11 13:39:23 +0200
616
Processing by ArticlesController#index as HTML
617

618 619
[1, 8] in /home/davidr/Proyectos/test_app/app/models/article.rb
   1: class Article < ActiveRecord::Base
620 621 622 623 624 625 626
   2:
   3:   def self.find_recent(limit = 10)
   4:     byebug
=> 5:     where('created_at > ?', 1.week.ago).limit(limit)
   6:   end
   7:
   8: end
627

628
(byebug)
629
```
630

R
Robin Dupret 已提交
631
If we use `next`, we want go deep inside method calls. Instead, byebug will go
632 633 634
to the next line within the same context. In this case, this is the last line of
the method, so `byebug` will jump to next next line of the previous frame.

635
```
636 637 638
(byebug) next
Next went up a frame because previous frame finished

639 640 641
[4, 13] in /PathTo/project/test_app/app/controllers/articles_controller.rb
    4:   # GET /articles
    5:   # GET /articles.json
642
    6:   def index
643
    7:     @articles = Article.find_recent
644 645 646
    8:
=>  9:     respond_to do |format|
   10:       format.html # index.html.erb
647
   11:       format.json { render json: @articles }
648 649 650
   12:     end
   13:   end

651
(byebug)
652
```
653

654 655
If we use `step` in the same situation, we will literally go the next ruby
instruction to be executed. In this case, the activesupport's `week` method.
656

657
```
658
(byebug) step
659

660
[50, 59] in /PathToGems/activesupport-5.0.0/lib/active_support/core_ext/numeric/time.rb
661 662 663 664 665 666 667 668 669 670
   50:     ActiveSupport::Duration.new(self * 24.hours, [[:days, self]])
   51:   end
   52:   alias :day :days
   53:
   54:   def weeks
=> 55:     ActiveSupport::Duration.new(self * 7.days, [[:days, self * 7]])
   56:   end
   57:   alias :week :weeks
   58:
   59:   def fortnights
671

672
(byebug)
673
```
674

675 676
This is one of the best ways to find bugs in your code, or perhaps in Ruby on
Rails.
677

678
### Breakpoints
679

680 681
A breakpoint makes your application stop whenever a certain point in the program
is reached. The debugger shell is invoked in that line.
682

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

686
* `break line`: set breakpoint in the _line_ in the current source file.
687 688 689 690 691 692 693
* `break file:line [if expression]`: set breakpoint in the _line_ number inside
the _file_. If an _expression_ is given it must evaluated to _true_ to fire up
the debugger.
* `break class(.|\#)method [if expression]`: set breakpoint in _method_ (. and
\# for class and instance method respectively) defined in _class_. The
_expression_ works the same way as with file:line.

694

695 696
For example, in the previous situation

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

(byebug) break 11
711
Created breakpoint 1 at /PathTo/project/app/controllers/articles_controller.rb:11
712

713
```
714

715 716
Use `info breakpoints _n_` or `info break _n_` to list breakpoints. If you
supply a number, it lists that breakpoint. Otherwise it lists all breakpoints.
717

718
```
719
(byebug) info breakpoints
720
Num Enb What
721
1   y   at /PathTo/project/app/controllers/articles_controller.rb:11
722
```
723

724 725 726
To delete breakpoints: use the command `delete _n_` to remove the breakpoint
number _n_. If no number is specified, it deletes all breakpoints that are
currently active.
727

728
```
729 730
(byebug) delete 1
(byebug) info breakpoints
731
No breakpoints.
732
```
733 734 735

You can also enable or disable breakpoints:

R
Robin Dupret 已提交
736
* `enable breakpoints`: allow a _breakpoints_ list or all of them if no list is
737 738
specified, to stop your program. This is the default state when you create a
breakpoint.
739
* `disable breakpoints`: the _breakpoints_ will have no effect on your program.
740

741
### Catching Exceptions
742

743 744 745
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.
746

747
To list all active catchpoints use `catch`.
748

749
### Resuming Execution
750

751 752 753 754 755 756 757 758 759 760 761 762 763 764
There are two ways to resume execution of an application that is stopped in the
debugger:

* `continue` [line-specification] \(or `c`): resume program execution, at the
address where your script last stopped; any breakpoints set at that address are
bypassed. The optional argument line-specification allows you to specify a line
number to set a one-time breakpoint which is deleted when that breakpoint is
reached.
* `finish` [frame-number] \(or `fin`): 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 no frame positioning (e.g up, down or frame) has been
performed. If a frame number is given it will run until the specified frame
returns.
765

766
### Editing
767 768 769

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

770 771
* `edit [file:line]`: edit _file_ using the editor specified by the EDITOR
environment variable. A specific _line_ can also be given.
772

773
### Quitting
774

775 776
To exit the debugger, use the `quit` command (abbreviated `q`), or its alias
`exit`.
777

778 779
A simple quit tries to terminate all threads in effect. Therefore your server
will be stopped and you will have to start it again.
780

781
### Settings
782

783
`byebug` has a few available options to tweak its behaviour:
784

785 786
* `set autoreload`: Reload source code when changed (defaults: true).
* `set autolist`: Execute `list` command on every breakpoint (defaults: true).
787
* `set listsize _n_`: Set number of source lines to list by default to _n_
788
(defaults: 10)
789 790
* `set forcestep`: Make sure the `next` and `step` commands always move to a new
line.
791

792 793
You can see the full list by using `help set`. Use `help set _subcommand_` to
learn about a particular `set` command.
794

795 796
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:
797

P
Prem Sichanugrist 已提交
798
```bash
799 800
set forcestep
set listsize 25
801
```
802

803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859
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

Inside any controller action or view, you can then invoke the console by
calling the `console` method.

For example, in a controller:

```ruby
class PostController < ApplicationController
  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.

The console executes pure Ruby code. You can define and instantiate
custom classes, create new models and inspect variables.

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

* `config.web_console.whitelisted_ips`: Authorized list of IPv4 or IPv6
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.

860 861
Debugging Memory Leaks
----------------------
862

863 864
A Ruby application (on Rails or not), can leak memory - either in the Ruby code
or at the C code level.
865

866 867
In this section, you will learn how to find and fix such leaks by using tool
such as Valgrind.
868

869
### Valgrind
870

871 872
[Valgrind](http://valgrind.org/) is a Linux-only application for detecting
C-based memory leaks and race conditions.
873

874 875 876 877
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.
878

879 880 881
For further information on how to install Valgrind and use with Ruby, refer to
[Valgrind and Ruby](http://blog.evanweaver.com/articles/2008/02/05/valgrind-and-ruby/)
by Evan Weaver.
882

883 884
Plugins for Debugging
---------------------
885

886 887 888 889 890 891
There are some Rails plugins to help you to find errors and debug your
application. Here is a list of useful plugins for debugging:

* [Footnotes](https://github.com/josevalim/rails-footnotes) Every Rails page has
footnotes that give request information and link back to your source via
TextMate.
892
* [Query Trace](https://github.com/ruckus/active-record-query-trace/tree/master) Adds query
893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908
origin tracing to your logs.
* [Query Reviewer](https://github.com/nesquena/query_reviewer) This rails plugin
not only runs "EXPLAIN" before each of your select queries in development, but
provides a small DIV in the rendered output of each page with the summary of
warnings for each query that it analyzed.
* [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
about your Rails app requests in the browser - in the Developer Tools panel.
Provides insight to db/rendering/total times, parameter list, rendered views and
more.
909

910 911
References
----------
912

913
* [ruby-debug Homepage](http://bashdb.sourceforge.net/ruby-debug/home-page.html)
A
Akira Matsuda 已提交
914
* [debugger Homepage](https://github.com/cldwalker/debugger)
915
* [byebug Homepage](https://github.com/deivid-rodriguez/byebug)
916
* [web-console Homepage](https://github.com/rails/web-console)
K
Ken Lu 已提交
917
* [Article: Debugging a Rails application with ruby-debug](http://www.sitepoint.com/debug-rails-app-ruby-debug/)
918 919 920 921
* [Ryan Bates' debugging ruby (revised) screencast](http://railscasts.com/episodes/54-debugging-ruby-revised)
* [Ryan Bates' stack trace screencast](http://railscasts.com/episodes/24-the-stack-trace)
* [Ryan Bates' logger screencast](http://railscasts.com/episodes/56-the-logger)
* [Debugging with ruby-debug](http://bashdb.sourceforge.net/ruby-debug.html)