質問編集履歴
1
通常のログイン画面からログインをした時のログを追記しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -70,11 +70,63 @@
|
|
70
70
|
|
71
71
|
Completed 200 OK in 62ms (Views: 61.0ms | Allocations: 6926)
|
72
72
|
|
73
|
-
|
73
|
+
```
|
74
|
+
|
75
|
+
|
76
|
+
|
74
|
-
|
77
|
+
#### 追記 (3/28 0:40)
|
78
|
+
|
75
|
-
|
79
|
+
##### 通常通りログイン画面からemail/passwordを入力してログインに成功した時のログ
|
80
|
+
|
81
|
+
|
82
|
+
|
76
|
-
|
83
|
+
```
|
84
|
+
|
77
|
-
|
85
|
+
Started POST "/users/sign_in" for 172.25.0.1 at 2021-03-27 15:39:20 +0000
|
86
|
+
|
87
|
+
Cannot render console from 172.25.0.1! Allowed networks: 127.0.0.0/127.255.255.255, ::1
|
88
|
+
|
89
|
+
Processing by Devise::SessionsController#create as HTML
|
90
|
+
|
91
|
+
Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}, "commit"=>"ログイン"}
|
92
|
+
|
93
|
+
User Load (1.7ms) SELECT `users`.* FROM `users` WHERE `users`.`email` = 'test@test.com' ORDER BY `users`.`id` ASC LIMIT 1
|
94
|
+
|
95
|
+
Redirected to http://localhost:3000/
|
96
|
+
|
97
|
+
Completed 302 Found in 228ms (ActiveRecord: 1.7ms | Allocations: 3488)
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
Started GET "/" for 172.25.0.1 at 2021-03-27 15:39:20 +0000
|
104
|
+
|
105
|
+
Cannot render console from 172.25.0.1! Allowed networks: 127.0.0.0/127.255.255.255, ::1
|
106
|
+
|
107
|
+
Processing by BikkesController#index as HTML
|
108
|
+
|
109
|
+
Rendering layout layouts/application.html.erb
|
110
|
+
|
111
|
+
Rendering bikkes/index.html.erb within layouts/application
|
112
|
+
|
113
|
+
User Load (1.3ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 ORDER BY `users`.`id` ASC LIMIT 1
|
114
|
+
|
115
|
+
↳ app/views/shared/_header.html.erb:6
|
116
|
+
|
117
|
+
Rendered shared/_header.html.erb (Duration: 15.3ms | Allocations: 1689)
|
118
|
+
|
119
|
+
Rendered shared/_search-list.html.erb (Duration: 70.7ms | Allocations: 4675)
|
120
|
+
|
121
|
+
Rendered shared/_footer.html.erb (Duration: 4.5ms | Allocations: 443)
|
122
|
+
|
123
|
+
Rendered bikkes/index.html.erb within layouts/application (Duration: 93.6ms | Allocations: 7048)
|
124
|
+
|
125
|
+
[Webpacker] Everything's up-to-date. Nothing to do
|
126
|
+
|
127
|
+
Rendered layout layouts/application.html.erb (Duration: 137.9ms | Allocations: 11951)
|
128
|
+
|
129
|
+
Completed 200 OK in 141ms (Views: 138.8ms | ActiveRecord: 1.3ms | Allocations: 12565)
|
78
130
|
|
79
131
|
```
|
80
132
|
|