Class MemoryLogger
- java.lang.Object
-
- com.microsoft.cognitiveservices.speech.diagnostics.logging.MemoryLogger
-
public final class MemoryLogger extends Object
A static class to control SDK logging into an in-memory buffer. Turning on logging while running your Speech SDK scenario provides detailed information from the SDK's core native components. If you report an issue to Microsoft, you may be asked to provide logs to help Microsoft diagnose the issue. Your application should not take dependency on particular log strings, as they may change from one SDK release to another without notice. MemoryLogger is designed for the case where you want to get access to logs that were taken in the short duration before some unexpected event happens. For example, if you are running a Speech Recognizer, you may want to dump the MemoryLogger after getting an event indicating recognition was canceled due to some error. The size of the memory buffer is fixed at 2MB and cannot be changed. This is a "ring" buffer, that is, new log strings written replace the oldest ones in the buffer. Added in version 1.42.0Memory logging is a process wide construct. That means that if (for example) you have multiple speech recognizer objects running in parallel, there will be one memory buffer containing interleaved logs from all recognizers. You cannot get a separate logs for each recognizer.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static List<String>dump()Returns the content of the whole memory buffer as a list of Strings.static voiddump(OutputStream outStream)Writes the content of the whole memory buffer to an object that implements java.io.OutputStream.static voiddump(String filePath)Writes the content of the whole memory buffer to the specified file.static voidsetFilters()Clears filters for memory logging.static voidsetFilters(String[] filters)Sets filters for memory logging.static voidsetLevel(Level level)Sets the level of the messages to be captured by the logger.static voidstart()Starts logging into the internal memory buffer.static voidstop()Stops logging into the internal memory buffer.
-
-
-
Method Detail
-
start
public static void start()
Starts logging into the internal memory buffer.
-
stop
public static void stop()
Stops logging into the internal memory buffer.
-
setFilters
public static void setFilters(String[] filters)
Sets filters for memory logging. Once filters are set, memory logger will only be updated with log strings containing at least one of the strings specified by the filters. The match is case sensitive.- Parameters:
filters- Filters to use, or an empty list to remove previously set filters.
-
setFilters
public static void setFilters()
Clears filters for memory logging.
-
setLevel
public static void setLevel(Level level)
Sets the level of the messages to be captured by the logger.- Parameters:
level- Maximum level of detail to be captured by the logger.
-
dump
public static void dump(String filePath)
Writes the content of the whole memory buffer to the specified file. It does not block other SDK threads from continuing to log into the buffer.- Parameters:
filePath- Path to a log file on local disk.
-
dump
public static void dump(OutputStream outStream) throws IOException
Writes the content of the whole memory buffer to an object that implements java.io.OutputStream. For example, System.out (for console output). It does not block other SDK threads from continuing to log into the buffer.- Parameters:
outStream- OutputStream object to write to.- Throws:
IOException- If an I/O error occurs.
-
dump
public static List<String> dump()
Returns the content of the whole memory buffer as a list of Strings. For example, you can access it as a String list by calling MemoryLogger.dump(). It does not block other SDK threads from continuing to log into the buffer.- Returns:
- A list of Strings of the contents of the memory buffer copied into it.
-
-