Example usage for org.apache.cassandra.tracing Tracing trace

List of usage examples for org.apache.cassandra.tracing Tracing trace

Introduction

In this page you can find the example usage for org.apache.cassandra.tracing Tracing trace.

Prototype

public static void trace(String message) 

Source Link

Usage

From source file:com.stratio.cassandra.lucene.util.Tracer.java

License:Apache License

/**
 * Traces the specified {@code String} message.
 *
 * @param message the message to be traced
 *///www.  j  a  va 2  s.  c  om
public static void trace(String message) {
    trace(() -> Tracing.trace(message));
}