Last change
on this file was
7,
checked in by phdmakk, 14 years ago
|
|
-
Property svn:mime-type set to
text/plain
|
File size:
1.0 KB
|
Rev | Line | |
---|
[7] | 1 | package org.etsi.common.logging; |
---|
| 2 | |
---|
| 3 | public class LoggingConfiguration { |
---|
| 4 | private boolean showFullPath = false; |
---|
| 5 | private boolean showFilename = true; |
---|
| 6 | private boolean showMessageClass = true; |
---|
| 7 | private boolean showDetails = true; |
---|
| 8 | private String logOutputPrefix = " "; |
---|
| 9 | |
---|
| 10 | public boolean isShowFullPath() { |
---|
| 11 | return showFullPath; |
---|
| 12 | } |
---|
| 13 | public void setShowFullPath(boolean showFullPath) { |
---|
| 14 | this.showFullPath = showFullPath; |
---|
| 15 | } |
---|
| 16 | public boolean isShowFilename() { |
---|
| 17 | return showFilename; |
---|
| 18 | } |
---|
| 19 | public void setShowFilename(boolean showFilename) { |
---|
| 20 | this.showFilename = showFilename; |
---|
| 21 | } |
---|
| 22 | public boolean isShowMessageClass() { |
---|
| 23 | return showMessageClass; |
---|
| 24 | } |
---|
| 25 | public void setShowMessageClass(boolean showMessageClass) { |
---|
| 26 | this.showMessageClass = showMessageClass; |
---|
| 27 | } |
---|
| 28 | public boolean isShowDetails() { |
---|
| 29 | return showDetails; |
---|
| 30 | } |
---|
| 31 | public void setShowDetails(boolean showDetails) { |
---|
| 32 | this.showDetails = showDetails; |
---|
| 33 | } |
---|
| 34 | public void setLogOutputPrefix(String logOutputPrefix) { |
---|
| 35 | this.logOutputPrefix = logOutputPrefix; |
---|
| 36 | } |
---|
| 37 | public String getLogOutputPrefix() { |
---|
| 38 | return logOutputPrefix; |
---|
| 39 | } |
---|
| 40 | |
---|
| 41 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.