Skip to content

Commit

Permalink
Reverse legacy commit
Browse files Browse the repository at this point in the history
  • Loading branch information
AvdLee committed Mar 1, 2024
1 parent ddf4533 commit ab7d58e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Sources/Logging/Loggable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ struct NewSession: Loggable {
let system = "\(Device.systemName) \(Device.systemVersion)"
let locale = Locale.preferredLanguages[0]

var message = "<summary><div class=\"session-header\">"
/// We start with `\n\n---\n\n` for backwards compatibility since it's
/// used for splitting the log into sections.
var message = "\n\n---\n\n<summary><div class=\"session-header\">"
message += "<p><span>Date: </span>\(date)</p>"
message += "<p><span>System: </span>\(system)</p>"
message += "<p><span>Locale: </span>\(locale)</p>"
Expand Down

0 comments on commit ab7d58e

Please sign in to comment.