Skip to content

Commit

Permalink
Merge pull request urbancoding#41 from msabramo/issue-40
Browse files Browse the repository at this point in the history
Change two NSLog statements to log exceptions by calling `inspect`
  • Loading branch information
msabramo committed Feb 6, 2012
2 parents febb3a3 + fc038ba commit 1ae2bdb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jenx/PreferencesGeneralViewController.rb
Expand Up @@ -64,9 +64,9 @@ def load_projects(sender=nil)
@project_list.selectItemWithObjectValue(@prefs.default_project)
end
rescue URI::InvalidURIError => uri_error
NSLog(uri_error)
NSLog(uri_error.inspect)
rescue Exception => error
NSLog(error)
NSLog(error.inspect)
end
end

Expand Down

0 comments on commit 1ae2bdb

Please sign in to comment.