What are the numbers in the square brackets in NSLog() output?

后端 未结 4 1358
半阙折子戏
半阙折子戏 2020-12-03 05:16

What is the stuff between the [] in the log message below? I get this in my iPhone app, and I have no idea where the message is coming from. My first guess woul

4条回答
  •  天命终不由人
    2020-12-03 06:08

    first number is the process ID, unsure about second, this line will precede every line thats printed to console from your application.

    Possibly a NSLog(@""); is causing this.

    Is your application running or has it crashed by this stage?

提交回复
热议问题