mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 08:53:41 +08:00
4670b62969
Convert all IMAP logging to write to a database table for easier inspection. These logs are cleaned up daily if they are > 5 days old. Logs can easily be watched in dev by setting DISCOURSE_DEV_LOG_LEVEL=\"debug\" and running tail -f development.log | grep IMAP
17 lines
341 B
Ruby
17 lines
341 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateImapSyncLog < ActiveRecord::Migration[6.0]
|
|
def change
|
|
create_table :imap_sync_logs do |t|
|
|
t.integer :level
|
|
t.string :message
|
|
t.bigint :group_id, null: true
|
|
|
|
t.timestamps
|
|
end
|
|
|
|
add_index :imap_sync_logs, :group_id
|
|
add_index :imap_sync_logs, :level
|
|
end
|
|
end
|