aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/console/trace/index.html
blob: db2ebb2ec60a2b95b2a229ef8fc53f53bcf6dda2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
---
title: Console.trace()
slug: Web/API/console/trace
tags:
  - API
  - Chrome
  - DOM
  - Debugging
  - Firefox
  - Method
  - NeedsBrowserCompatibility
  - String
  - Web Development
  - console
  - console.trace()
  - trace
  - web console
translation_of: Web/API/Console/trace
---
<div>{{APIRef("Console API")}}</div>

<p>{{domxref("console")}} インタフェースの <code><strong>trace()</strong></code> メソッドは、<a href="/ja/docs/Tools/Web_Console">Web コンソール</a>にスタックトレースを出力します。</p>

<p>{{AvailableInWorkers}}</p>

<p>詳細や使用例については、{{domxref("console")}} のドキュメントの <a href="/ja/docs/Web/API/console#Stack_traces">スタックトレース</a> をご覧ください。</p>

<h2 id="構文">構文</h2>

<pre class="syntaxbox">console.trace( [...<var>any</var>, ...<var>data</var> ]);</pre>

<h3 id="引数">引数</h3>

<dl>
 <dt><code>...<var>any</var>, ...<var>data</var></code> {{optional_inline}}</dt>
 <dd>コンソールにスタックトレースとともに出力されるゼロ個以上のオブジェクト。これらは、{{domxref("console.log()")}}<span class="tlid-translation translation" lang="ja"><span title="">メソッドに渡される場合と同じ方法でアセンブルおよびフォーマットされます。</span></span></dd>
</dl>

<h2 id="例"></h2>

<pre class="brush: js">function foo() {
  function bar() {
    console.trace();
  }
  bar();
}

foo();
</pre>

<p>コンソールには次のようなトレースが表示されます。</p>

<pre>bar
foo
&lt;anonymous&gt;</pre>

<h2 id="仕様">仕様</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">仕様書</th>
   <th scope="col">策定状況</th>
   <th scope="col">コメント</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName("Console API", "#trace", "console.trace()")}}</td>
   <td>{{Spec2("Console API")}}</td>
   <td>最初の定義</td>
  </tr>
 </tbody>
</table>

<h2 id="ブラウザ実装状況">ブラウザ実装状況</h2>



<p>{{Compat("api.Console.trace")}}</p>

<h2 id="関連情報">関連情報</h2>

<ul>
 <li><a class="external" href="http://www.opera.com/dragonfly/documentation/console/">Opera Dragonfly documentation: Console</a></li>
</ul>