Skip to content

Commit 4d57d93

Browse files
committed
Fehlerausgabe verbessern
1 parent d83fca1 commit 4d57d93

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

lib/m3_log_file_parser/request.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,9 @@ def to_s
7070
message.starts_with?("Started ") ||
7171
message.starts_with?("Processing by ") ||
7272
message.starts_with?("Parameters: ") ||
73-
message.starts_with?("Completed ")
73+
message.starts_with?("Completed ") ||
74+
message.starts_with?("Rendering ") ||
75+
message.starts_with?("Rendered ")
7476
end.first || stacktrace.first
7577
end
7678
end

m3_log_file_parser.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
33
# Describe your gem and declare its dependencies:
44
Gem::Specification.new do |s|
55
s.name = "m3_log_file_parser"
6-
s.version = "0.0.5"
6+
s.version = "0.0.6"
77
s.authors = ["Georg Limbach"]
88
s.email = ["georg.limbach@lichtbit.com"]
99
s.summary = "Parser for Rails applications"

0 commit comments

Comments
 (0)