railsのログにセッションIDやリモートIPを表示するようにする remote_ipを吐き出す方法config.log_tagsにて、セッション毎にuuid発行と、アクセスユーザーのipを記録するようにする」。 config/environment/develpment.rb # Prepend all log lines with the following tags config.log_tags = [ :subdomain, :uuid, :remote_ip ] config/environment/production.rb # Prepend all log lines with the following tags config.log_tags = [ :subdomain, :uuid, :remote_ip ] 参考 #318 Upgrading to Rails