Mysql2QueryFilter::Plugin::Log
Logging plug-in for Mysql2QueryFilter.
Installation
Add this line to your application's Gemfile:
gem 'mysql2_query_filter-plugin-log'
And then execute:
$ bundle
Or install it yourself as:
$ gem install mysql2_query_filter-plugin-log
Usage
require 'mysql2_query_filter'
Mysql2QueryFilter.configure do |filter|
filter.plugin :log #, out: $stderr
end
Mysql2QueryFilter.enable!
client = Mysql2::Client.new(host: 'localhost', username: 'root')
client.query('show databases')