summaryrefslogtreecommitdiffstats
path: root/source4/scripting/bin
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-08-08 22:50:28 +0200
committerVolker Lendecke <vl@samba.org>2010-08-08 23:37:47 +0200
commit795589b4f81b8d40d3cd6a53b85153df01e3ff01 (patch)
tree7a26f0eade86b974f78f952e03592f4e4bad95ae /source4/scripting/bin
parent83045b1ba9fb8aa211d94b66453e2a2a61cae7ed (diff)
s3: Remove the smbd_messaging_context from cups_cache_reload
Diffstat (limited to 'source4/scripting/bin')
0 files changed, 0 insertions, 0 deletions
cket-477 Unnamed repository; edit this file 'description' to name the repository.Endi Dewata
summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/cms/logging/LogEntry.java
blob: ac8d16f54e7ba76f64c7a1e0044494d60a8f9aa9 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
// --- BEGIN COPYRIGHT BLOCK ---
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; version 2 of the License.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
// (C) 2007 Red Hat, Inc.
// All rights reserved.
// --- END COPYRIGHT BLOCK ---
package com.netscape.cms.logging;

import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Vector;

/**
 * A log entry of LogFile
 *
 * @version $Revision$, $Date$
 */
public class LogEntry {
    private String mEntry;
    private String mLevel;
    private String mSource;
    private String mDetail;
    private String mDate;
    private String mTime;
    private Vector<String> mRow;

    private final String DATE_PATTERN = "dd/MMM/yyyy:HH:mm:ss z";

    /**
     * Constructor for a LogEntry.
     *
     */
    public LogEntry(String entry) throws ParseException {
        mEntry = entry;
        mRow = parse();
    }

    /**
     * parse a log entry
     *
     * return a vector of the segments of the entry
     */

    public Vector<String> parse() throws ParseException {
        int x = mEntry.indexOf("[");

        if (x == -1)
            throw new ParseException(mEntry, 0);