optimus-ep 0.10.2 → 0.10.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +2 -0
- data/lib/log_file_parser.rb +0 -2
- data/lib/version.rb +1 -1
- data/optimus-ep.gemspec +1 -1
- metadata +1 -1
data/CHANGELOG
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
v 0.10.3. Oh god oh god I left logging information in now it is gone again.
|
2
|
+
|
1
3
|
v 0.10.2. Generated counter columns no longer clobber columns with data you want. "Session" is the most common example.
|
2
4
|
|
3
5
|
v.0.10.0. Actually make things like counter columns work again. Sorry, anyone who downloaded 0.9.x.
|
data/lib/log_file_parser.rb
CHANGED
@@ -61,7 +61,6 @@ module Optimus
|
|
61
61
|
@found_cols.names_with_cols.each do |pair|
|
62
62
|
name, col = *pair
|
63
63
|
val = frame.get(col)
|
64
|
-
$stderr.puts("Frame #{i}: setting #{name} to #{val}")
|
65
64
|
row[name] = val
|
66
65
|
end
|
67
66
|
end
|
@@ -205,7 +204,6 @@ module Optimus
|
|
205
204
|
end
|
206
205
|
|
207
206
|
def []=(key, val)
|
208
|
-
$stderr.puts("Setting #{key} to #{val}")
|
209
207
|
@data[Column.new(key, @level).to_s] = val
|
210
208
|
end
|
211
209
|
|
data/lib/version.rb
CHANGED
data/optimus-ep.gemspec
CHANGED