I have following method for debug purposes:
void UeLoggedUsersInfo::uePrintLoggedUsers()
{
    qDebug() << "\n"
             << Q_FUNC_INFO
             << ":\n";
    for(int index=0; index<this->ueLoggedUsersData()->size(); index++)
    {
        qDebug() << this->ueLoggedUsersData()->at(index).constBegin().key().first
                 << this->ueLoggedUsersData()->at(index).constBegin().key().second
                 << this->ueLoggedUsersData()->at(index).constBegin().value();
    }   // for
    qDebug() << "\nEND\n";
}   // uePrintLoggedUsers
It traverses across some data structure and prints its mebmers values, that is all ok. But, is it possible with Qt framework (without including other frameworks) to print within this method which method is calling it and if it is, how?
