Print blendMode in console, possible?

No, I don’t think there is a way to do this out of the box.

Note that the parameters you pass into the blendMode() function are actually just int values defined here:

You could set up your own tracking of the blend mode though, something like this:

String blendMode = "BLEND";

void setBlendMode(int blendModeValue){

  blendMode(blendModeValue);

  if(blendModeValue == ADD){
    blendMode = "ADD";
  }
  else if ...
}
2 Likes