improved color logger
Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
@@ -4,6 +4,7 @@ package de.srsoftware.logging;
|
||||
import static de.srsoftware.logging.ConsoleColors.*;
|
||||
import static java.lang.System.Logger.Level.*;
|
||||
|
||||
import java.text.DateFormat;
|
||||
import java.text.MessageFormat;
|
||||
import java.text.SimpleDateFormat;
|
||||
import java.util.Date;
|
||||
@@ -12,6 +13,9 @@ import java.util.ResourceBundle;
|
||||
public class ColorLogger implements System.Logger {
|
||||
private final String name;
|
||||
private static int rootLevel = INFO.getSeverity();
|
||||
private static DateFormat TIME = new SimpleDateFormat("hh:mm:ss.SSS");
|
||||
private static DateFormat DATE = new SimpleDateFormat("yyyy-MM-dd");
|
||||
private static String lastDate = null;
|
||||
|
||||
public ColorLogger(String name) {
|
||||
this.name = name;
|
||||
@@ -50,7 +54,12 @@ public class ColorLogger implements System.Logger {
|
||||
private static String colorize(String message, int severity) {
|
||||
var color = severity >= ERROR.getSeverity() ? RED : severity >= WARNING.getSeverity() ? YELLOW : severity >= INFO.getSeverity() ? WHITE_BRIGHT : WHITE;
|
||||
var date = new Date();
|
||||
var FORMAT = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss.SSS");
|
||||
return WHITE + FORMAT.format(date) + " " + color + message + RESET;
|
||||
var day =DATE.format(date);
|
||||
StringBuilder sb = new StringBuilder();
|
||||
if (!day.equals(lastDate)){
|
||||
lastDate = day;
|
||||
sb.append(WHITE).append(day).append("\n");
|
||||
}
|
||||
return sb.append(WHITE).append(TIME.format(date)).append(" ").append(color).append(message).append(RESET).toString();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,36 +1,35 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Light OIDC</title>
|
||||
<script src="common.js"></script>
|
||||
<script src="user.js"></script>
|
||||
<script src="clients.js"></script>
|
||||
<link rel="stylesheet" href="style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<nav>
|
||||
<a id="clients" href="clients.html">Clients</a>
|
||||
</nav>
|
||||
<h1>Clients</h1>
|
||||
<fieldset>
|
||||
<legend>bei LightOIDC registrierte Clients:</legend>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Client</th>
|
||||
<th>ID</th>
|
||||
<th>Weiterleitungs-URLs</th>
|
||||
<th>Aktionen</th>
|
||||
</tr>
|
||||
<tr id="bottom">
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td>
|
||||
<button onclick="window.location.href='newclient.html';">Neuen Client hinzufügen…</button>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<span class="hidden" id="message">Client "{}" wirklich löschen?</span>
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Light OIDC</title>
|
||||
<script src="common.js"></script>
|
||||
<script src="user.js"></script>
|
||||
<script src="clients.js"></script>
|
||||
<link rel="stylesheet" href="style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<nav></nav>
|
||||
<h1>Clients</h1>
|
||||
|
||||
<fieldset>
|
||||
<legend>bei LightOIDC registrierte Clients:</legend>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Client</th>
|
||||
<th>ID</th>
|
||||
<th>Weiterleitungs-URLs</th>
|
||||
<th>Aktionen</th>
|
||||
</tr>
|
||||
<tr id="bottom">
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td>
|
||||
<button onclick="window.location.href='newclient.html';">Neuen Client hinzufügen…</button>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<span class="hidden" id="message">Client "{}" wirklich löschen?</span>
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -1,38 +1,36 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Light OIDC</title>
|
||||
<script src="common.js"></script>
|
||||
<script src="user.js"></script>
|
||||
<script src="clients.js"></script>
|
||||
<link rel="stylesheet" href="style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<nav>
|
||||
<a id="clients" href="clients.html">Clients</a>
|
||||
</nav>
|
||||
<h1>Clients</h1>
|
||||
<a href="https://umbrella.srsoftware.de/user/login">Umbrella</a>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Light OIDC</title>
|
||||
<script src="common.js"></script>
|
||||
<script src="user.js"></script>
|
||||
<script src="clients.js"></script>
|
||||
<link rel="stylesheet" href="style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<nav></nav>
|
||||
<h1>Clients</h1>
|
||||
|
||||
<fieldset>
|
||||
<legend>These are clients that are registered with LightOIDC:</legend>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Client</th>
|
||||
<th>ID</th>
|
||||
<th>Redirect URLs</th>
|
||||
<th>Actions</th>
|
||||
</tr>
|
||||
<tr id="bottom">
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td>
|
||||
<button onclick="window.location.href='newclient.html';">Add new client…</button>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<span class="hidden" id="message">Really remove client "{}"?</span>
|
||||
</fieldset>
|
||||
</body>
|
||||
<fieldset>
|
||||
<legend>These are clients that are registered with LightOIDC:</legend>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Client</th>
|
||||
<th>ID</th>
|
||||
<th>Redirect URLs</th>
|
||||
<th>Actions</th>
|
||||
</tr>
|
||||
<tr id="bottom">
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td>
|
||||
<button onclick="window.location.href='newclient.html';">Add new client…</button>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<span class="hidden" id="message">Really remove client "{}"?</span>
|
||||
</fieldset>
|
||||
<a href="https://umbrella.srsoftware.de/user/login">Umbrella</a>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user