org.pmw.tinylog.Logger.trace()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(9.3k)|赞(0)|评价(0)|浏览(193)

本文整理了Java中org.pmw.tinylog.Logger.trace()方法的一些代码示例,展示了Logger.trace()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Logger.trace()方法的具体详情如下:
包路径:org.pmw.tinylog.Logger
类名称:Logger
方法名:trace

Logger.trace介绍

暂无

代码示例

代码示例来源:origin: com.xiaoleilu/hutool-log

  1. @Override
  2. public void trace(String format, Object... arguments) {
  3. Logger.trace(format, arguments);
  4. }

代码示例来源:origin: com.xiaoleilu/hutool-log

  1. @Override
  2. public void trace(Throwable t, String format, Object... arguments) {
  3. Logger.trace(t, format, arguments);
  4. }

代码示例来源:origin: mathisdt/trackworktime

  1. @Override
  2. public int v(String tag, String msg, Throwable tr) {
  3. Logger.trace(tr, msg);
  4. return Log.v(tag, msg, tr);
  5. }
  6. @Override

代码示例来源:origin: mathisdt/trackworktime

  1. @Override
  2. public int v(String tag, String msg) {
  3. Logger.trace(msg);
  4. return Log.v(tag, msg);
  5. }
  6. @Override

代码示例来源:origin: zhicwu/cassandra-jdbc-driver

  1. public CassandraColumnDefinition getColumnDefinition(int column)
  2. throws SQLException {
  3. if (column > 0 && column <= columnDefinitions.size()) {
  4. return columnDefinitions.get(column - 1);
  5. }
  6. Logger.trace("Columns for your reference: " + columnNameIndices);
  7. throw new SQLException("Column " + column + " does not exists!");
  8. }

代码示例来源:origin: zhicwu/cassandra-jdbc-driver

  1. public CassandraColumnDefinition getColumnDefinition(String columnName)
  2. throws SQLException {
  3. int column = columnNameIndices.containsKey(columnName) ? columnNameIndices
  4. .get(columnName) : -1;
  5. if (column >= 0 && column < columnDefinitions.size()) {
  6. return columnDefinitions.get(column);
  7. }
  8. Logger.trace("Columns for your reference: " + columnNameIndices);
  9. throw new SQLException("Column " + columnName + " does not exists!");
  10. }

代码示例来源:origin: openpnp/openpnp

  1. private static int checkCSV(String str[], String val[]) {
  2. for (int i = 0; i < str.length; i++) {
  3. for (int j = 0; j < val.length; j++) {
  4. if (str[i].equals(val[j])) {
  5. Logger.trace("checkCSV: " + val[j] + " = " + j);
  6. // check for mil units
  7. // TODO This should be done better, but at moment I don't know a better way...
  8. // -trampas
  9. if (val[j].equals("Ref-X(mil)")) {
  10. units_mils_x = 1;
  11. Logger.trace("X units are in mils");
  12. }
  13. if (val[j].equals("Ref-Y(mil)")) {
  14. units_mils_y = 1;
  15. Logger.trace("Y units are in mils");
  16. }
  17. if (val[j].equals("Height(mil)")) {
  18. units_mils_height = 1;
  19. Logger.trace("Height units are in mils");
  20. }
  21. return j;
  22. }
  23. }
  24. }
  25. return -1;
  26. }

代码示例来源:origin: openpnp/openpnp

  1. public void on(String event, Map<String, Object> globals) throws Exception {
  2. Logger.trace("Scripting.on " + event);
  3. for (File script : FileUtils.listFiles(eventsDirectory, extensions, false)) {
  4. if (!script.isFile()) {
  5. continue;
  6. }
  7. if (FilenameUtils.getBaseName(script.getName()).equals(event)) {
  8. Logger.trace("Scripting.on found " + script.getName());
  9. execute(script, globals);
  10. }
  11. }
  12. }
  13. }

代码示例来源:origin: openpnp/openpnp

  1. byte[] readWithChecksum(int length) throws Exception {
  2. byte[] b = new byte[length];
  3. for (int i = 0; i < length; i++) {
  4. b[i] = (byte) (read(false) & 0xff);
  5. }
  6. int checksum = read(false);
  7. // TODO STOPSHIP verify checksum
  8. StringBuffer sb = new StringBuffer();
  9. for (int i = 0; i < b.length; i++) {
  10. sb.append(String.format("%02x", b[i] & 0xff));
  11. }
  12. sb.append(String.format("%02x", checksum & 0xff));
  13. Logger.trace("< " + sb.toString());
  14. return b;
  15. }

代码示例来源:origin: zhicwu/cassandra-jdbc-driver

  1. @SuppressWarnings("unchecked")
  2. @Override
  3. protected <T> T getValue(int columnIndex, Class<T> clazz)
  4. throws SQLException {
  5. Logger.trace("Trying to get value with inputs: line={}, column={}, type={}", getRow(), columnIndex, clazz);
  6. Object obj = currentRow[columnIndex - 1];
  7. T result = null;
  8. Logger.trace("Got raw value [{}] from line {} of {}", obj, getRow(), data.length);
  9. wasNull = obj == null;
  10. result = this.getDataTypeConverters().convert(obj, clazz, false);
  11. Logger.trace("Return value: raw={}, converted={}", obj, result);
  12. return result;
  13. }

代码示例来源:origin: zhicwu/cassandra-jdbc-driver

  1. /**
  2. * This creates a result set based on given data and column definitions.
  3. *
  4. * @param columns column definitions, name and its Cql type
  5. * @param data rows
  6. */
  7. public DummyCassandraResultSet(String[][] columns, Object[][] data) {
  8. super(null, null);
  9. Logger.trace("Constructing dummy result set @{}...", hashCode());
  10. if (columns != null && columns.length > 0 && columns[0].length > 1) {
  11. for (String[] column : columns) {
  12. Logger.trace("* Column: {name={}, cqlType={}}", column[0], column[1]);
  13. metadata.addColumnDefinition(new CassandraColumnDefinition(
  14. null, null, column[0], column[1], false));
  15. }
  16. }
  17. this.data = data == null ? new String[0][] : data;
  18. if (LOG_LEVEL.compareTo(Level.TRACE) >= 0) {
  19. for (Object[] row : this.data) {
  20. Logger.trace("* Row: {}", Arrays.toString(row));
  21. }
  22. }
  23. Logger.trace("Dummy result set @{} is ready for use", hashCode());
  24. }

代码示例来源:origin: openpnp/openpnp

  1. void write(int d, boolean log) throws Exception {
  2. d = d & 0xff;
  3. if (log) {
  4. Logger.trace(String.format("> %02x", d));
  5. }
  6. getCommunications().write(d);
  7. }

代码示例来源:origin: openpnp/openpnp

  1. int read(boolean log) throws Exception {
  2. while (true) {
  3. try {
  4. int d = getCommunications().read();
  5. if (log) {
  6. Logger.trace(String.format("< %02x", d & 0xff));
  7. }
  8. return d;
  9. }
  10. catch (TimeoutException e) {
  11. continue;
  12. }
  13. }
  14. }

代码示例来源:origin: openpnp/openpnp

  1. void writeWithChecksum(byte[] b) throws Exception {
  2. StringBuffer sb = new StringBuffer();
  3. for (int i = 0; i < b.length; i++) {
  4. sb.append(String.format("%02x", b[i] & 0xff));
  5. }
  6. sb.append(String.format("%02x", checksum(b) & 0xff));
  7. Logger.trace("> " + sb.toString());
  8. for (int i = 0; i < b.length; i++) {
  9. write(b[i], false);
  10. }
  11. getCommunications().write(checksum(b) & 0xff);
  12. }

代码示例来源:origin: openpnp/openpnp

  1. /**
  2. * Wraps internalCapture() to ensure that a null image is never returned. Attempts to
  3. * retry capture if the capture returns null and if no image can be captured returns a
  4. * default image. Several of the low level camera drivers return null when there is a
  5. * capture error, but these are often temporary and we would prefer not to have bad
  6. * images returned. The retry is intended to smooth this out.
  7. * @return
  8. */
  9. protected synchronized BufferedImage safeInternalCapture() {
  10. for (int i = 0; i < CAPTURE_RETRY_COUNT; i++) {
  11. BufferedImage image = internalCapture();
  12. if (image != null) {
  13. return image;
  14. }
  15. Logger.trace("Camera {} failed to return an image. Retrying.", this);
  16. }
  17. if (CAPTURE_ERROR_IMAGE == null) {
  18. CAPTURE_ERROR_IMAGE = new BufferedImage(640, 480, BufferedImage.TYPE_INT_ARGB);
  19. Graphics2D g = (Graphics2D) CAPTURE_ERROR_IMAGE.createGraphics();
  20. g.setColor(Color.black);
  21. g.fillRect(0, 0, 640, 480);
  22. g.setColor(Color.red);
  23. g.drawLine(0, 0, 640, 480);
  24. g.drawLine(640, 0, 0, 480);
  25. g.dispose();
  26. }
  27. Logger.warn("Camera {} failed to return an image after {} tries.", this, CAPTURE_RETRY_COUNT);
  28. return CAPTURE_ERROR_IMAGE;
  29. }

代码示例来源:origin: openpnp/openpnp

  1. public void send(Message message) throws Exception {
  2. while (message != null) {
  3. State state = getState();
  4. Map<Message, Transition> transitions = this.transitions.get(state);
  5. if (transitions == null) {
  6. throw new Exception("No defined transitions from " + state);
  7. }
  8. Transition transition = transitions.get(message);
  9. if (transition == null) {
  10. throw new Exception("No defined transitions from " + state + " for " + message);
  11. }
  12. if (transition.task != null) {
  13. transition.task.task();
  14. }
  15. setState(transition.toState);
  16. Logger.trace(message + " => " + state + " -> " + transition.toState);
  17. message = transition.nextMessage;
  18. }
  19. }

代码示例来源:origin: openpnp/openpnp

  1. public void run() {
  2. while (!disconnectRequested) {
  3. String line;
  4. try {
  5. line = getCommunications().readLine().trim();
  6. }
  7. catch (TimeoutException ex) {
  8. continue;
  9. }
  10. catch (IOException e) {
  11. Logger.error("Read error", e);
  12. return;
  13. }
  14. line = line.trim();
  15. Logger.trace("[{}] << {}", getCommunications().getConnectionName(), line);
  16. if (!processPositionReport(line)) {
  17. responseQueue.offer(line);
  18. }
  19. }
  20. }

代码示例来源:origin: zhicwu/cassandra-jdbc-driver

  1. @SuppressWarnings("unchecked")
  2. @Override
  3. protected <T> T getValue(int columnIndex, Class<T> clazz)
  4. throws SQLException {
  5. Logger.trace("Trying to get value with inputs: line={}, column={}, type={}", getRow(), columnIndex, clazz);
  6. Object rawValue = null;
  7. T result = null;
  8. if (_currentRow != null) {
  9. String typeName = metadata.getColumnTypeName(columnIndex);
  10. if (clazz == String.class
  11. && (CassandraDataType.TIME.getTypeName().equals(typeName)
  12. || CassandraDataType.TIMESTAMP.getTypeName().equals(typeName))) {
  13. rawValue = _currentRow.getString(columnIndex - 1);
  14. } else {
  15. rawValue = _currentRow.getObject(columnIndex - 1);
  16. }
  17. Logger.trace("Got raw value [{}] from line #{}", rawValue, getRow());
  18. wasNull = rawValue == null;
  19. try {
  20. result = getDataTypeConverters().convert(rawValue, clazz, true);
  21. } catch (ClassCastException e) {
  22. Logger.warn(e, "Not able to convert [{}] to {}", rawValue, clazz);
  23. if (!quiet) {
  24. throw new SQLException(e);
  25. }
  26. }
  27. }
  28. Logger.trace("Return value: raw={}, converted={}", rawValue, result);
  29. return result;
  30. }

代码示例来源:origin: openpnp/openpnp

  1. private boolean processPositionReport(String line) {
  2. if (getCommand(null, CommandType.POSITION_REPORT_REGEX) == null) {
  3. return false;
  4. }
  5. if (!line.matches(getCommand(null, CommandType.POSITION_REPORT_REGEX))) {
  6. return false;
  7. }
  8. Logger.trace("Position report: {}", line);
  9. Matcher matcher =
  10. Pattern.compile(getCommand(null, CommandType.POSITION_REPORT_REGEX)).matcher(line);
  11. matcher.matches();
  12. for (Axis axis : axes) {
  13. try {
  14. String s = matcher.group(axis.getName());
  15. Double d = Double.valueOf(s);
  16. axis.setCoordinate(d);
  17. }
  18. catch (Exception e) {
  19. Logger.warn("Error processing position report for axis {}: {}", axis.getName(), e);
  20. }
  21. }
  22. ReferenceMachine machine = ((ReferenceMachine) Configuration.get().getMachine());
  23. for (Head head : Configuration.get().getMachine().getHeads()) {
  24. machine.fireMachineHeadActivity(head);
  25. }
  26. return true;
  27. }

代码示例来源:origin: openpnp/openpnp

  1. Logger.trace("actuatorRead response: {}", line);
  2. Matcher matcher = Pattern.compile(regex).matcher(line);
  3. matcher.matches();

相关文章