Skip to content

Optional Naming in components for debugging #33

Description

@GarrettBurroughs

Most of the time, naming for debugs is implemented on the class level. By having an option to set the name at the superclass level (Component class). This could be made much more straightforward, and scalable
Ex:

private String name;

public void setName(String name){
    this.name = name;
}

public void debug(){
    // Whatever Debug code is there
    Debugger.debug(name, debug);
}

Names will not be handled in the constructor, as they are optional

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Labels

Low PriorityIssues that would be nice to have resolved but are not necessaryenhancement

Type

No type

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions