// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`ts-log should work with custom logger 1`] = `
[
  [
    "trace summing 1 + 2 = 3",
    1,
    2,
    3,
  ],
]
`;

exports[`ts-log should work with custom logger 2`] = `
[
  [
    "debug summing 1 + 2 = 3",
    1,
    2,
    3,
  ],
]
`;

exports[`ts-log should work with custom logger 3`] = `
[
  [
    "info summing 1 + 2 = 3",
    1,
    2,
    3,
  ],
]
`;

exports[`ts-log should work with custom logger 4`] = `
[
  [
    "warn summing 1 + 2 = 3",
    1,
    2,
    3,
  ],
]
`;

exports[`ts-log should work with custom logger 5`] = `
[
  [
    "error summing 1 + 2 = 3",
    1,
    2,
    3,
  ],
]
`;
