This should do it...
awk -F"," ' # -F flag sets the field delimiter to a ","
$2~/slsap/ # If the 2nd field matches "sslap"...
{
# print the the substring of 2nd field,
# starting from 2 characters positions after the ":" in the second field
print substr($2,index($2,": ")+2);
# once you've found a match, you don't need to process anymore
exit }' yourFile
Without comments...
awk -F"," '$2~/slsap/ {print substr($2,index($2,": ")+2); exit}' yourFile
HTH