summaryrefslogtreecommitdiffstats
path: root/mobile/android/services/src/main/java/org/mozilla/gecko/background/common/log/writers/TagLogWriter.java
blob: fbcd94a91bae7b25885524be23334eb0a3d56dd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

package org.mozilla.gecko.background.common.log.writers;

/**
 * A @link{LogWriter} that logs each message under a parent tag.
 */
public abstract class TagLogWriter extends LogWriter {

  protected final LogWriter inner;

  public TagLogWriter(final LogWriter inner) {
    super();
    this.inner = inner;
  }

  protected abstract String getMainTag();

  @Override
  public void error(String tag, String message, Throwable error) {
    inner.error(this.getMainTag(), tag + " :: " + message, error);
  }

  @Override
  public void warn(String tag, String message, Throwable error) {
    inner.warn(this.getMainTag(), tag + " :: " + message, error);
  }

  @Override
  public void info(String tag, String message, Throwable error) {
    inner.info(this.getMainTag(), tag + " :: " + message, error);
  }

  @Override
  public void debug(String tag, String message, Throwable error) {
    inner.debug(this.getMainTag(), tag + " :: " + message, error);
  }

  @Override
  public void trace(String tag, String message, Throwable error) {
    inner.trace(this.getMainTag(), tag + " :: " + message, error);
  }

  @Override
  public boolean shouldLogVerbose(String tag) {
    return inner.shouldLogVerbose(this.getMainTag());
  }

  @Override
  public void close() {
    inner.close();
  }
}