io.vertx.core.impl.logging.Logger Java Examples
The following examples show how to use
io.vertx.core.impl.logging.Logger.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: NoticeResponse.java From vertx-sql-client with Apache License 2.0 | 6 votes |
@Override public void log(Logger logger) { logger.warn("Backend notice: " + "severity='" + getSeverity() + "'" + ", code='" + getCode() + "'" + ", message='" + getMessage() + "'" + ", detail='" + getDetail() + "'" + ", hint='" + getHint() + "'" + ", position='" + getPosition() + "'" + ", internalPosition='" + getInternalPosition() + "'" + ", internalQuery='" + getInternalQuery() + "'" + ", where='" + getWhere() + "'" + ", file='" + getFile() + "'" + ", line='" + getLine() + "'" + ", routine='" + getRoutine() + "'" + ", schema='" + getSchema() + "'" + ", table='" + getTable() + "'" + ", column='" + getColumn() + "'" + ", dataType='" + getDataType() + "'" + ", constraint='" + getConstraint() + "'"); }
Example #2
Source File: RunTestOnContext.java From vertx-unit with Apache License 2.0 | 6 votes |
@Override public Statement apply(Statement base, Description description) { return new Statement() { @Override public void evaluate() throws Throwable { vertx = createVertx.get(); try { Context context = vertx != null ? vertx.getOrCreateContext() : null; VertxUnitRunner.pushContext(context); base.evaluate(); } finally { VertxUnitRunner.popContext(); CountDownLatch latch = new CountDownLatch(1); closeVertx.accept(vertx, latch); try { if (!latch.await(30 * 1000, TimeUnit.MILLISECONDS)) { Logger logger = LoggerFactory.getLogger(description.getTestClass()); logger.warn("Could not close Vert.x in tme"); } } catch (InterruptedException e) { Thread.currentThread().interrupt(); } } } }; }
Example #3
Source File: Notice.java From vertx-sql-client with Apache License 2.0 | votes |
void log(Logger logger);