Announcement

Collapse

Technology Forum Has Moved!

The FIRST Tech Challenge Technology forum has moved to a new location! Please take a look at our forum blog for links and instructions on how to access the new forum.

The official blog of the FIRST Tech Challenge - a STEM robotics programs for students grades 7-12.


Note that volunteers (except for FTA/WTA/CSA will still access their role specific forum through this site. The blog also outlines how to access the volunteer forums.
See more
See less

DbgLog missing from SDK 3.2 beta

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • DbgLog missing from SDK 3.2 beta

    We successfully updated our code to the new SDK 3.1, and wanted to try the 3.2 beta release (partly for its explicit support of the new REV color sensor). But our legacy code makes extensive use of the DbgLog class (from com.qualcomm.ftccommon.DbgLog), which has disappeared from the beta. Is there a recommended replacement for DbgLog?
    --Roy M

  • #2
    You can RobotLog.i() and RobotLog.e() as drop-in replacements for DbgLog.msg and DbgLog.error, respectively. If you want use a custom tag (something unsupported by DbgLog), you can use the RobotLog.ii, RobotLog.ww, RobotLog.ee, and RobotLog.dd variants .

    Comment

    Working...
    X