Skip to content

Commit

Permalink
unnecessary debugger extension warnings removed from log
Browse files Browse the repository at this point in the history
  • Loading branch information
timashev committed Oct 21, 2011
1 parent 11c20f2 commit 3aa5bb0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions lib/extensions/debugger/CHANGELOG
@@ -1,3 +1,6 @@
## 1.0.5
* Unnecessary warnings removed from application log

## 1.0.4
* Debugger low level messages excluded from application log

Expand Down
2 changes: 1 addition & 1 deletion lib/extensions/debugger/debugger.rb
Expand Up @@ -82,7 +82,7 @@ def get_variables(scope)
vars = eval(prefix + cmd, $_binding)
$_s.write("VSTART:#{vartype}\n")
vars.each do |v|
if v !~ /^\$(=|KCODE)$/
if v !~ /^\$(=|KCODE|-K)$/
begin
result = eval(v.to_s, $_binding).inspect
rescue Exception => exc
Expand Down
2 changes: 1 addition & 1 deletion rhomobile-debug.gemspec
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |s|
s.name = "rhomobile-debug"
s.version = "1.0.4"
s.version = "1.0.5"
s.authors = ["Rhomobile"]
s.date = Time.now.strftime('%Y-%m-%d')
s.description = %q{Rhomobile debugger extension}
Expand Down

0 comments on commit 3aa5bb0

Please sign in to comment.