You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
424 B
11 lines
424 B
export interface Log {
|
|
date: string;
|
|
message: string;
|
|
}
|
|
|
|
export const LogSchema = {
|
|
// Currently keyed by "date" because A) today's log data is what we need so we append, and
|
|
// B) we don't want it to grow so we remove everything if this is the first entry today.
|
|
// See safari-notifications.js logMessage for the associated logic.
|
|
logs: "date", // definitely don't key by the potentially large message field
|
|
};
|
|
|